/* Custom styles to supplement Tailwind */
.katex-display {
    margin: 1em 0;
    overflow-x: auto;
    overflow-y: hidden;
}

/* Smooth transitions */
section {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Choice hover effect */
.choice-label:hover {
    border-color: #3b82f6;
    /* blue-500 */
    background-color: #eff6ff;
    /* blue-50 */
}

/* Selected choice */
.choice-input:checked+.choice-label {
    border-color: #2563eb;
    /* blue-600 */
    background-color: #eff6ff;
    /* blue-50 */
    box-shadow: 0 0 0 2px #bfdbfe;
    /* blue-200 ring */
}