/* Core Styles - Reset, Body, Container */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem 0 1rem;
}

/* Low Confidence Review Mode Header */
.low-conf-header {
    background: linear-gradient(90deg, #ffe4b5, #ffd896);
    color: #8b4513;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Skipped Files Review Mode Header */
.skipped-header {
    background: linear-gradient(90deg, #f8d7da, #f5c6cb);
    color: #721c24;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 500;
}

.skipped-header .exit-review-btn {
    background-color: #721c24;
}

.exit-review-btn {
    background-color: #8b4513;
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
}

.exit-review-btn:hover {
    background-color: #6b3510;
}

/* Audio Quality Badge */
.audio-quality-badge {
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.audio-quality-badge.quality-1 {
    background-color: #dc3545;
    color: white;
}

.audio-quality-badge.quality-2 {
    background-color: #fd7e14;
    color: white;
}
