body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
}

/* Center the quiz box neatly */
.container {
    max-width: 600px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Question text styling */
.question {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0d6efd; /* Bootstrap blue */
}

/* Choices container */
.choice {
    display: flex;
    flex-direction: column;    
    align-items: center;      
    margin-top: 20px;
}

/* Choice buttons */
.choice > button {
    width: 75%;
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #0d6efd;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

/* Hover effect */
.choice > button:hover {
    background-color: #e9f3ff;
    transform: scale(1.02);
}

/* Selected button style */
.selected {
    background-color: #cfe2ff;
    border-color: #0d6efd;
    font-weight: 600;
}

/* Submit button area */
.submit {
    width: 150px;
    margin-top: 20px;
    border-radius: 8px;
}

.selected {
    background-color: #cfe2ff !important;
    border-color: #0d6efd !important;
    color: #0d6efd;
    font-weight: 600;
}

.heading {
    color: rgb(29, 5, 108);
}