
/* 
        .form-container {
            width: 200px;
            height: 200px;
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        .input-group {
            margin-bottom: 20px;
            background-color: red;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
            text-align: left;
        }
        select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            background: white;
        }
        
        select:focus {
            outline: none;
            border-color: #6e8efb;
        }
        .loading {
            display: none;
            text-align: center;
            padding: 20px 0;
        }
        .spinner {
            border: 3px solid rgba(110, 142, 251, 0.3);
            border-radius: 50%;
            border-top: 3px solid #6e8efb;
            width: 30px;
            height: 30px;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .error {
            color: #e74c3c;
            text-align: center;
            padding: 15px;
            background: #ffe6e6;
            border-radius: 8px;
            margin-top: 15px;
            display: none;
        } */