
/* Custom animations for modal */
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .modal-animate {
            animation: modalFadeIn 0.3s ease-out;
        }
        
        /* Custom scrollbar for modal */
        .modal-content::-webkit-scrollbar {
            width: 8px;
        }
        
        .modal-content::-webkit-scrollbar-thumb {
            background-color: #7b1e87;
            border-radius: 4px;
        }
        
        .modal-content::-webkit-scrollbar-track {
            background-color: #7b1e87;
        }
        
        /* Custom form focus styles */
        input:focus, textarea:focus, select:focus {
            outline: none;
            box-shadow: 0 0 0 2px #7b1e87;
        }
  