/* Container Box Configuration */
#quiz-box, #results-box {
    background-color: #ffffff;
    border: 1px solid #e1e4e6;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: 30px auto;
    padding: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #2d3748;
}

/* Titles and Progress Labels */
#title {
    font-size: 1.6rem;
    color: #1a202c;
    margin-top: 0;
    margin-bottom: 8px;
}

#progress-text {
    font-size: 0.9rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

#question-display {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Form Options Structure */
#options-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Hide the default simple line break layout */
#options-form br {
    display: none;
}

/* Style the Labels to Look Like Clickable Cards */
#options-form label {
    display: flex;
    align-items: center;
    background-color: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

#options-form label:hover {
    background-color: #edf2f7;
    border-color: #cbd5e0;
}

/* Radio Button Spacing */
#options-form input[type="radio"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Feedback Message Text */
#message-display {
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #4a5568;
}

/* Universal Button Styling */
#submit-btn, #next-btn, #results-box button {
    background-color: #f7df1e; /* JavaScript Yellow Theme tint */
    color: #1a202c;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    transition: background-color 0.2s ease;
}

#submit-btn:hover, #next-btn:hover, #results-box button:hover {
    background-color: #e5cf1b;
}

/* Score Panel Specifics */
#final-score {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}
