 /* Custom Form Styles */
        .custom-input, .custom-select {
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            border-top-left-radius: 8px !important;
            border-bottom-left-radius: 8px !important;
            padding: 12px 16px;
            font-size: 14px;
            transition: all 0.2s ease;
            background-color: #fafafa;
        }

        .custom-input:focus, .custom-select:focus {
            border-color: #59C7E8;
            box-shadow: 0 0 0 3px rgba(89, 199, 232, 0.1);
            /* background-color: white; */
            outline: none;
            position: relative;
        }

        .custom-input::placeholder {
            color: #a0aec0;
        }

        span.input-group-text.biginput-icon {
            padding: 1.06rem;
            border-top: 1px solid #e2e8f0;
            border-right: 1px solid #e2e8f0 !important;
            border-bottom: 1px solid #e2e8f0;
            border-left: none;
        }
        /* .input-group:focus-within .input-group-text {
            border-color: #59C7E8;
            
        } */
        
        input.form-control.custom-input.biginput{
            margin-right: 2.75rem;
        }

        /* File Upload Styles */
        .file-upload-wrapper {
            position: relative;
            display: block;
        }

        .file-upload-wrapper input[type=file] {
            position: absolute;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .file-upload-display {
            background-color: #fafafa;
            border: 2px dashed #e2e8f0;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .file-upload-display:hover {
            border-color: #59C7E8;
            background-color: rgba(89, 199, 232, 0.05);
        }

        .file-upload-display i {
            font-size: 1.5rem;
            color: #666;
            margin-bottom: 8px;
            display: block;
        }

        /* Custom Checkbox */
        .custom-checkbox {
            border-radius: 4px;
            border: 1px solid #e2e8f0;
            width: 1.1em;
            height: 1.1em;
        }

        .custom-checkbox:checked {
            background-color: #59C7E8;
            border-color: #59C7E8;
        }

        /* Custom Table */
        .custom-table {
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }

        .custom-table tbody td {
            padding: 12px 15px;
            border-color: #f1f3f4;
            font-size: 14px;
        }

        /* Submit Button */
        .custom-submit-btn {
            background: #59C7E8;
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.2s ease;
            min-width: 200px;
        }

        .custom-submit-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(89, 199, 232, 0.3);
            color: white;
        }

        .custom-submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }
        .sch-btn{border:0;background:#59C7E8;color:#2b3a4a;width:36px;height:36px;border-radius:10px;display:inline-flex;align-items:center;justify-content:center;cursor:pointer}
        .sch-btn.primary{background:#59C7E8;color:#fff}

         .flatpickr-day.selected
        {
            background: #59C7E8 !important;
            border-color: #59C7E8 !important;
        }
            .flatpickr-day:hover
            {
                background: #59C7E8 !important;
                border-color: #59C7E8 !important;
                color: #fff !important;
            }
            .flatpickr-calendar .flatpickr-day.today{
                border: 1px solid #59C7E8 !important;
                background: none !important;
                color: black !important;
            }
             div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm
            {
                background: #59C7E8;
                color: white;
                border:none !important;
                
            }
            div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:focus {
                box-shadow: none !important;
            }
            

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .icon-box {
                width: 28px !important;
                height: 28px !important;
                font-size: 12px !important;
            }
            
            .section-heading h3 {
                font-size: 1.2rem !important;
            }
        }