/* Custom scrollbar styling for modal content */
[style*="scrollbar-width: thin"] {
    scrollbar-color: #cbd5e1 #f1f5f9;
}

[style*="scrollbar-width: thin"]::-webkit-scrollbar {
    width: 6px;
}

[style*="scrollbar-width: thin"]::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

[style*="scrollbar-width: thin"]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

[style*="scrollbar-width: thin"]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Force step content spacing */
#step3, #step4, #step5, #step6 {
    margin-top: -40px !important;
    padding-top: 0 !important;
}

#step3 > h2,
#step4 > div:first-child,
#step5 > div:first-child,
#step6 > div:first-child {
    margin-top: -20px !important;
}

/* Modal Animation */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.animate-modal {
    animation: modalFadeIn 0.3s ease-out;
}
