/* CSS Document */
		.floating-form-container {
            position: fixed;
            bottom: 30px;
            right: 100px;
            width: 320px;
            background: #082f6b;
	  color:white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            padding: 25px;
            z-index: 999;
            animation: slideIn 0.3s ease-out;
            transition: all 0.3s ease;
        }

  .floating-form-container.minimized {
            width: auto;
            height: 50px;
            padding: 0 20px;
            border-radius: 25%;
            overflow: hidden;
            cursor: pointer;
			box-shadow: 0 4px 15px rgba(8, 47, 107, 0.3);

        }

  .minimize-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 30px;
            height: 30px;
            border: none;
            background: #f0f0f0;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            z-index: 10;
			box-shadow: 0 4px 15px rgba(8, 47, 107, 0.3);

        }

  .minimize-btn:hover {
            background: #e0e0e0;
            transform: scale(1.1);
        }

  .minimize-btn svg {
            width: 16px;
            height: 16px;
        }

 .minimized .minimize-btn {
            display: none;
        }

        .minimized-icon {
            display: none;
            width: 100%;
            height: 100%;
            align-items: center;
            justify-content: center;
            background-color: #082f6b;
            color: white;
            font-size: 16px;
			font-weight: 600;
			white-space: nowrap;gap: 8px
        }

        .minimized .minimized-icon {
            display: flex;
        }

        .minimized .form-content {
            display: none;
        }

        @keyframes slideIn {
            from {
                transform: translateY(100px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .floating-form-container h3 {
            margin: 0 0 20px 0;
            font-size: 1.5rem;
            color: #333;
            font-weight: 600;
            padding-right: 30px;
        }

        .floating-form-container p {
            margin-bottom: 12px;
        }

        .floating-form-container p:last-child {
            margin-bottom: 0;
        }

        .form-control, .form-select {
            border-radius: 8px;
            border: 1px solid #ddd;
            padding: 10px 15px;
            font-size: 0.95rem;
        }

        .form-control:focus, .form-select:focus {
            border-color: #126df9;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
        }

        .btn-primary-b {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            background: linear-gradient(135deg, #126df9 0%, #082f6b 100%);
            border: none;
            font-weight: 600;
            transition: transform 0.2s;
        }

        .btn-primary-b:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .text-danger {
            color: #dc3545 !important;
            font-weight: 500;
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .floating-form-container {
                width: calc(100% - 40px);
                right: 20px;
                left: 20px;
            }

            .floating-form-container.minimized {
                width: auto;
                left: auto;
            }
        }
