/* Styling for Quiz Page 41 */
#page_41 .quiz-p41-container {
    max-width: 100%;
    margin-top: 10px;
}

#page_41 .question {
    margin-bottom: 8px;
}

#page_41 .question p {
    font-weight: 600;
    margin: 5px 0;
    font-size: 0.95rem;
}

#page_41 label {
    display: flex;
    align-items: center;
    background: #f5f7fa;
    margin: 4px 0;
    padding: 8px 10px 8px 4px; /* Reduced left padding */
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.9rem;
    gap: 3px;
}

#page_41 label input[type="radio"] {
    margin: 0;
}

#page_41 label:hover {
    background: #e6f0ff;
}

#page_41 button {
    width: 100%;
    background: #2a6fff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    padding: 10px;
    margin-top: 10px;
}

#page_41 button:hover {
    background: #1b52cc;
}

#page_41 .notification {
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    display: none;
}

#page_41 .correct {
    background: #d4f8d4;
    color: #0a8a0a;
    font-size: 14px;
    font-weight: bold;
}

#page_41 .wrong {
    background: #ffe1e1;
    color: #d93025;
    font-size: 14px;
    font-weight: bold;
}
