        /* Custom styles for the form */
        body {
            font-family: 'Inter', sans-serif;
        }

        h1,h2,h3,h4,h5,h6,label {
            font-family: 'DSans', sans-serif;
        }
        /* Custom focus style */
        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border-color: #3b82f6; /* blue-500 */
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
            background-color: #e0e0e0;
        }
        /* Spinner */
        .spinner {
            border: 2px solid rgba(255,255,255,0.1);
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border-left-color: #3b82f6;
            animation: spin 1s ease infinite;
        }
        /* Animations */
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-fadeInUp {
            animation: fadeInUp 0.7s ease-out forwards;
        }
        /* Style for the state container animation */
        #state-container {
            transition: all 0.4s ease-in-out;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transform: translateY(-1rem);
        }
        #state-container.is-visible {
            max-height: 500px; /* Allow space for dropdown */
            opacity: 1;
            transform: translateY(0);
        }