/* Smooth transitions for radio buttons */
label {
    transition: all 0.15s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #004B87;
    border-radius: 4px;
}

/* Fade in animation for step content */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

main {
    animation: fadeIn 0.3s ease-out;
}

/* Print-friendly */
@media print {
    header, footer, nav, button, a[href="/descargar"] {
        display: none !important;
    }
}
