/* Custom Scrollbar for Modal Body */
.modal-scroll::-webkit-scrollbar {
    width: 6px;
}
.modal-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.modal-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.modal-scroll::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Animation for Conditional Fields */
.fade-enter {
    animation: fadeIn 0.3s ease-in-out forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}