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

body {
    font-family: Inter, system-ui, -apple-system, sans-serif;
    background-color: #FFFFFF;
    color: #2D3748;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.quiz-header {
    background: white;
    border-bottom: 1px solid #E2E8F0;
    padding: 12px 0;
    margin-bottom: 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #2D3748;
    line-height: 1;
}

.logo-tagline {
    font-size: 12px;
    font-weight: 500;
    color: #718096;
    letter-spacing: 0.5px;
}

.back-link {
    color: #718096;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.back-link:hover {
    color: #2D3748;
}

/* Quiz Progress */
.quiz-progress {
    background: #F7FAFC;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Horizontal layout only when score circle is present (free quiz) */
.quiz-progress:has(.score-circle) {
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.score-circle {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    border: 3px solid #FF8C42;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.2);
}

.score-number {
    font-size: 20px;
    font-weight: 700;
    color: #2D3748;
    line-height: 1;
}

.score-label {
    font-size: 11px;
    font-weight: 500;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.progress-content {
    flex: 1;
    min-width: 0;
}

.quiz-title {
    font-size: 18px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 6px;
}

.progress-text {
    color: #718096;
    font-size: 14px;
    margin-bottom: 0;
}

/* Larger spacing for free quiz with score circle */
.quiz-progress:has(.score-circle) .progress-text {
    margin-bottom: 12px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #E2E8F0;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF8C42, #E6742A);
    transition: width 0.5s ease;
}

.progress-fill.correct {
    background: linear-gradient(90deg, #48BB78, #38A169);
    transition: width 0.8s ease-out;
}

.progress-fill.incorrect {
    background: linear-gradient(90deg, #F56565, #E53E3E);
    transition: width 0.8s ease-out;
}

/* Question */
.question-container {
    background: white;
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #E2E8F0;
    margin-bottom: 20px;
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 16px;
}

.question-text {
    font-size: 20px;
    font-weight: 600;
    color: #2D3748;
    line-height: 1.4;
    flex: 1;
    margin: 0;
}

/* Add spacing below question text when not in a header (practice exam) */
.question-container > .question-text {
    margin-bottom: 20px;
}

.report-question-btn {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 8px;
    background: white;
    border: 1.5px solid #E2E8F0;
    border-radius: 6px;
    color: #718096;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    line-height: 1;
    font-family: Inter, system-ui, -apple-system, sans-serif;
    letter-spacing: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
    appearance: none;
}

.report-question-btn svg {
    flex-shrink: 0;
    transition: margin 0.3s ease;
}

.report-question-btn span {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width 0.3s ease, opacity 0.3s ease, margin-left 0.3s ease;
}

.report-question-btn:hover {
    background: #FFF5F5;
    border-color: #F56565;
    color: #C53030;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(245, 101, 101, 0.15);
    padding: 8px 12px;
}

.report-question-btn:hover span {
    max-width: 120px;
    opacity: 1;
    margin-left: 6px;
}

.question-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bookmark-btn {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 8px;
    background: white;
    border: 1.5px solid #E2E8F0;
    border-radius: 6px;
    color: #718096;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    font-family: Inter, system-ui, -apple-system, sans-serif;
    line-height: 1;
    letter-spacing: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
}

.bookmark-btn svg {
    flex-shrink: 0;
    transition: margin 0.3s ease;
}

.bookmark-btn span {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width 0.3s ease, opacity 0.3s ease, margin-left 0.3s ease;
}

.bookmark-btn:hover {
    background: #FFFAF0;
    border-color: #FF8C42;
    color: #E6742A;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.15);
    padding: 8px 12px;
}

.bookmark-btn:hover span {
    max-width: 100px;
    opacity: 1;
    margin-left: 6px;
}

.bookmark-btn.bookmarked {
    background: #FFFAF0;
    border-color: #FF8C42;
    color: #E6742A;
}

.bookmark-btn.bookmarked:hover {
    background: #FFF5F5;
    border-color: #E6742A;
    color: #CC6229;
}

/* Answer Options */
.options-container {
    margin-bottom: 20px;
}

.option {
    margin-bottom: 12px;
}

.option-input {
    display: none;
}

.option-label {
    display: flex;
    align-items: flex-start;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.option-label:hover {
    border-color: #CBD5E0;
    background: #F7FAFC;
}

.option-input:checked + .option-label {
    border-color: #FF8C42;
    background: #FFF5F5;
    color: #2D3748;
}

.option-indicator {
    width: 18px;
    height: 18px;
    border: 2px solid #E2E8F0;
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.option-input:checked + .option-label .option-indicator {
    border-color: #FF8C42;
    background: #FF8C42;
}

.option-input:checked + .option-label .option-indicator::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.option-text {
    font-size: 16px;
    font-weight: 500;
}

/* Question Navigation */
.question-navigation {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.question-navigation .previous-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    line-height: 1;
}

/* Submit Button */
.submit-button {
    flex: 1;
    background: #FF8C42;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
}

.submit-button:hover {
    background: #E6742A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

/* Feedback Section */
.feedback-container {
    background: white;
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #E2E8F0;
    margin-bottom: 20px;
}

/* Two-column layout for feedback and memory anchor */
.feedback-and-anchor-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feedback-options {
    flex: 1;
    min-width: 0;
}

.feedback-option {
    margin-bottom: 12px;
    padding: 14px 16px;
    border-radius: 6px;
    border: 2px solid;
}

.feedback-option:last-child {
    margin-bottom: 0;
}

.feedback-option.correct {
    border-color: #48BB78;
    background: #F0FFF4;
}

.feedback-option.incorrect {
    border-color: #F56565;
    background: #FFF5F5;
}

.feedback-option.neutral {
    border-color: #E2E8F0;
    background: #F7FAFC;
}

.feedback-option-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 12px;
}

.feedback-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.feedback-indicator.selected {
    background: #2D3748;
    color: white;
}

.feedback-indicator.correct {
    background: #48BB78;
    color: white;
}

.feedback-indicator.neutral {
    background: #E2E8F0;
    color: #718096;
}

.feedback-option-text {
    font-size: 16px;
    font-weight: 600;
    color: #2D3748;
    flex: 1;
}

.feedback-status {
    font-size: 14px;
    font-weight: 600;
    margin-left: 12px;
}

.feedback-status.correct {
    color: #22543D;
}

.feedback-status.incorrect {
    color: #C53030;
}

.feedback-explanation {
    color: #4A5568;
    font-style: italic;
    margin-top: 6px;
    padding-left: 32px;
    font-size: 14px;
}

/* Answer Distribution */
.answer-distribution {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.distribution-bar-wrapper {
    width: 60px;
    height: 4px;
    background: #E2E8F0;
    border-radius: 2px;
    overflow: hidden;
}

.distribution-bar {
    height: 100%;
    background: #FF8C42;
    border-radius: 2px;
    transition: width 0.5s ease-out;
}

.distribution-percentage {
    font-size: 12px;
    font-weight: 600;
    color: #718096;
    white-space: nowrap;
}

/* Key Takeaway - In sidebar (right column) */
.feedback-and-anchor-wrapper .key-takeaway {
    flex: 0 0 420px;
    width: 420px;
    margin: 0;
    padding: 16px 20px;
    background: linear-gradient(135deg, #FFF5F5 0%, #F7FAFC 100%);
    border-left: 4px solid #FF8C42;
    border-radius: 6px;
    position: sticky;
    top: 20px;
    align-self: flex-start;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

/* Image wrapper for memory anchor images */
.key-takeaway-image {
    background: white;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
}

.key-takeaway-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #E2E8F0;
}

.key-takeaway-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.key-takeaway-title {
    font-size: 16px;
    font-weight: 600;
    color: #2D3748;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.memory-anchor-logo {
    height: 24px;
    width: auto;
}

.feedback-buttons {
    display: flex;
    gap: 8px;
}

.feedback-btn {
    background: white;
    border: 2px solid #FF8C42;
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #FF8C42;
    box-shadow: 0 2px 4px rgba(255, 140, 66, 0.15);
}

.feedback-btn:hover {
    background: #FFF5F5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.25);
}

.feedback-btn:active {
    transform: translateY(0);
}

.feedback-btn.heart-btn:hover {
    border-color: #E53E3E;
    color: #E53E3E;
    background: #FFF5F5;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.25);
}

.feedback-btn.heart-btn.active {
    border-color: #E53E3E;
    background: #E53E3E;
    color: white;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.4);
}

.feedback-btn.heart-btn.active svg {
    fill: white;
}

.key-takeaway-text {
    color: #4A5568;
    margin: 0;
    font-size: 14px;
    background: white;
    padding: 14px 16px;
    border-radius: 8px;
    margin-top: 10px;
    line-height: 1.6;
}

/* Navigation Buttons */
.navigation-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.next-button {
    display: inline-block;
    background: #FF8C42;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.next-button:hover {
    background: #E6742A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.previous-button {
    display: inline-block;
    background: #E2E8F0;
    color: #2D3748;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.previous-button:hover {
    background: #CBD5E0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Back to Dashboard */
.back-to-dashboard {
    text-align: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #E2E8F0;
}

/* Confidence Buttons (domain quiz pre-answer state) */
.question-navigation-with-confidence {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.question-navigation-with-confidence .confidence-buttons {
    margin-left: auto;
    margin-right: auto;
}

.question-navigation-with-confidence .previous-button,
.question-navigation-with-confidence .next-button {
    display: inline-block;
    background: #FF8C42;
    color: white;
    min-width: 180px;
    padding: 14px 24px;
    line-height: 1.5;
    text-align: center;
    box-sizing: border-box;
}

.question-navigation-with-confidence .previous-button:hover,
.question-navigation-with-confidence .next-button:hover {
    background: #E6742A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.confidence-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.confidence-btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: white;
    min-width: 160px;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.confidence-btn.confident {
    background: #22c55e;
    border-color: #16a34a;
}

.confidence-btn.semi-confident {
    background: #eab308;
    border-color: #ca8a04;
}

.confidence-btn.not-confident {
    background: #ef4444;
    border-color: #dc2626;
}

/* Mobile: confidence buttons as one row above, prev/next as a separate row below */
@media (max-width: 768px) {
    .question-navigation-with-confidence {
        gap: 12px;
        align-items: stretch;
    }

    .question-navigation-with-confidence .confidence-buttons {
        order: 1;
        width: 100%;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .question-navigation-with-confidence .confidence-btn {
        flex: 1;
        min-width: 0;
        padding: 12px 8px;
        font-size: 0.85rem;
    }

    .question-navigation-with-confidence .previous-button,
    .question-navigation-with-confidence .next-button {
        flex: 1 1 0;
        min-width: 0;
        padding: 14px 12px;
        text-align: center;
    }

    .question-navigation-with-confidence .previous-button {
        order: 2;
    }

    .question-navigation-with-confidence .next-button {
        order: 3;
    }
}

.back-to-dashboard a {
    color: #718096;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.back-to-dashboard a:hover {
    color: #2D3748;
}

/* Progress Wrapper (contains progress bar + timer) */
.progress-wrapper {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 20px;
}

.progress-wrapper .quiz-progress {
    flex: 1;
    margin-bottom: 0;
}

/* Timer Styles */
.timer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #F7FAFC;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    flex-shrink: 0;
    min-width: 100px;
}

.timer-icon {
    color: #718096;
    display: flex;
    align-items: center;
}

.quiz-timer {
    font-size: 1.5rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #2D3748;
}

.quiz-timer.timer-warning {
    color: #f97316;
}

.timer-container:has(.timer-warning) {
    border-color: #f97316;
    background: #fffbeb;
}

.timer-container:has(.timer-warning) .timer-icon {
    color: #f97316;
}

.quiz-timer.timer-critical {
    color: #dc2626;
    animation: timer-pulse 1s infinite;
}

.timer-container:has(.timer-critical) {
    border-color: #dc2626;
    background: #fef2f2;
}

.timer-container:has(.timer-critical) .timer-icon {
    color: #dc2626;
}

.quiz-timer.timer-expired {
    color: #dc2626;
    font-size: 1rem;
}

@keyframes timer-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 12px;
        max-width: 100%;
    }
    
    /* Header */
    .quiz-header {
        padding: 8px 0;
        margin-bottom: 12px;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .logo-text {
        font-size: 18px;
    }

    .logo-tagline {
        display: none;
    }

    .back-link {
        font-size: 14px;
    }
    
    /* Progress */
    .quiz-progress {
        padding: 12px 16px;
        margin-bottom: 12px;
        gap: 8px;
    }

    .quiz-progress:has(.score-circle) {
        gap: 16px;
    }
    
    .quiz-title {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .progress-text {
        font-size: 12px;
        margin-bottom: 0;
    }

    .quiz-progress:has(.score-circle) .progress-text {
        margin-bottom: 8px;
    }
    
    .progress-bar {
        height: 6px;
    }
    
    /* Question */
    .question-container {
        padding: 16px;
        margin-bottom: 12px;
    }

    .question-header {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 16px;
    }

    .question-text {
        font-size: 16px;
        line-height: 1.3;
    }

    .question-container > .question-text {
        margin-bottom: 16px;
    }

    .report-question-btn {
        align-self: flex-start;
        padding: 6px;
        font-size: 12px;
    }

    .report-question-btn:hover {
        padding: 6px 10px;
    }

    .report-question-btn svg {
        width: 14px;
        height: 14px;
    }

    .bookmark-btn {
        padding: 6px;
        font-size: 12px;
    }

    .bookmark-btn:hover {
        padding: 6px 10px;
    }

    /* Options */
    .options-container {
        margin-bottom: 16px;
    }
    
    .option {
        margin-bottom: 8px;
    }
    
    .option-label {
        padding: 10px 12px;
    }
    
    .option-indicator {
        width: 16px;
        height: 16px;
        margin-right: 10px;
    }
    
    .option-text {
        font-size: 14px;
    }
    
    /* Question Navigation */
    .question-navigation {
        gap: 8px;
    }
    
    .question-navigation .previous-button {
        padding: 10px 16px;
    }
    
    /* Submit Button */
    .submit-button {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    /* Feedback */
    .feedback-and-anchor-wrapper {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }

    .feedback-options {
        width: 100%;
    }

    .feedback-option {
        margin-bottom: 10px;
        padding: 12px;
        position: relative;
    }

    .feedback-option-header {
        margin-bottom: 6px;
        flex-wrap: wrap;
    }

    .feedback-indicator {
        width: 16px;
        height: 16px;
        margin-right: 10px;
        font-size: 10px;
    }

    .feedback-option-text {
        font-size: 14px;
        flex: 1;
        min-width: 0;
        padding-right: 70px;
    }

    .feedback-status {
        font-size: 12px;
        flex-basis: 100%;
        margin-left: 26px;
        margin-top: 4px;
    }
    
    .feedback-explanation {
        padding-left: 26px;
        margin-top: 6px;
        font-size: 12px;
    }

    /* Answer Distribution */
    .distribution-text-desktop {
        display: none;
    }

    .answer-distribution {
        position: absolute;
        top: 12px;
        right: 12px;
        margin-left: 0;
    }

    .distribution-bar-wrapper {
        width: 40px;
        height: 3px;
    }

    .distribution-percentage {
        font-size: 11px;
    }

    /* Key Takeaway */
    .feedback-and-anchor-wrapper .key-takeaway {
        flex: none;
        width: 100%;
        margin: 0;
        padding: 12px 16px;
        position: static;
        max-height: none;
        overflow-y: visible;
    }

    .key-takeaway-image {
        padding: 8px;
        margin-top: 10px;
    }

    .key-takeaway-image img {
        max-height: 200px;
        border-radius: 6px;
    }

    .key-takeaway-header {
        margin-bottom: 4px;
    }

    .key-takeaway-title {
        font-size: 14px;
        gap: 6px;
    }

    .memory-anchor-logo {
        height: 20px;
    }

    .feedback-buttons {
        gap: 6px;
    }

    .feedback-btn {
        padding: 5px 7px;
    }

    .feedback-btn svg {
        width: 16px;
        height: 16px;
    }

    .key-takeaway-text {
        font-size: 12px;
        padding: 12px 14px;
        margin-top: 8px;
    }

    /* Navigation Buttons */
    .navigation-buttons {
        margin-top: 12px;
        gap: 8px;
    }
    
    .next-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .previous-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Back to Dashboard */
    .back-to-dashboard {
        margin-top: 16px;
        padding-top: 12px;
    }
    
    .back-to-dashboard a {
        font-size: 14px;
    }

    /* Progress Wrapper */
    .progress-wrapper {
        flex-direction: row;
        gap: 8px;
        margin-bottom: 12px;
    }

    .progress-wrapper .quiz-progress {
        flex: 1;
    }

    /* Timer */
    .timer-container {
        flex-direction: column;
        padding: 8px 12px;
        min-width: 70px;
        gap: 2px;
    }

    .quiz-timer {
        font-size: 1rem;
    }

    .timer-icon svg {
        width: 16px;
        height: 16px;
    }
}
