html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Vlog Script Styling */
.vlog-script {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
}

.vlog-header {
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

.vlog-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.vlog-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.video-description, .hashtags {
    flex: 1;
    min-width: 250px;
}

.video-description h3, .hashtags h3 {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.video-description p, .hashtags p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.script-content {
    background-color: #f9f9f9;
    border-radius: 6px;
    padding: 20px;
}

.script-section-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #444;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.script-section {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.script-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ff7e5f;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.setting {
    background-color: #f0f7ff;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-style: italic;
    color: #0056b3;
}

.dialogue {
    background-color: #fff9e6;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-family: 'Nunito', sans-serif;
    color: #333;
    border-left: 3px solid #ffd166;
}

.instructions {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.scene {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.scene:last-child {
    border-bottom: none;
}

.editing-notes {
    background-color: #f5f5f5;
    border-radius: 6px;
    padding: 15px;
    margin-top: 20px;
}

.editing-notes h4 {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
}

.notes-content {
    color: #666;
    line-height: 1.6;
}

/* Custom Topic Section Styling */
/* Moved to vlogger.css for consistency */

/* Responsive adjustments */
@media (max-width: 768px) {
    .vlog-metadata {
        flex-direction: column;
        gap: 15px;
    }
    
    .script-section {
        padding: 12px;
    }
    
    .dialogue, .setting {
        padding: 8px;
    }
}