/* Additional styles for Endless Flags Game */

.quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.score-counter {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

#end-game-btn {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
    color: white !important;
}

#end-game-btn:hover {
    background: #c82333 !important;
    border-color: #bd2130 !important;
}

/* Adjust the existing quiz screen layout */
#quiz-screen .quiz-header .progress-bar {
    display: none; /* Hide progress bar in endless mode */
}

.answer-sequence {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    word-break: break-all;
    max-height: 100px;
    overflow-y: auto;
}
