.film-quiz-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.film-quiz-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
#film-quiz-form {
    padding-bottom: 30px;
}

/* Form element styling to prevent flash and ensure consistent rendering */
#film-quiz-form label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-size: 14px;
}

#film-quiz-form select {
    width: 100%;
    max-width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff !important;
    color: #333 !important;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 40px;
}

#film-quiz-form select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

#film-quiz-form select option {
    background-color: #fff !important;
    color: #333 !important;
    padding: 8px;
}

#film-quiz-form button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#film-quiz-form button:hover {
    background-color: #005a87;
}

#film-quiz-form button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.5);
}

/* Ensure container spacing */
#q2-container {
    margin-top: 0;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .film-quiz-content {
        width: 95%;
        padding: 15px;
    }
    
    #film-quiz-form select {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

