* {
    font-family: "Inter", sans-serif;
}

::-webkit-scrollbar {
    display: none;
}

.highlighted-section {
    outline: 2px solid #2FA69C;
    background-color: rgba(47, 166, 156, 0.1);
}

/* Day toggle styles */
.day-checkbox:checked + .day-label {
    background-color: #2FA69C;
    border-color: #0E7768;
    transform: scale(1.05);
}

.day-label {
    display: inline-block;
    min-width: 60px;
    text-align: center;
}

.day-toggle:hover .day-label {
    transform: scale(1.05);
}

/* Time picker styles */
.time-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(206, 235, 231, 0.3);  /* CEEBE7 with opacity */
    border-radius: 2px;
    outline: none;
}

.time-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #2FA69C;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: #0E7768;
}

.time-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #2FA69C;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.minute-btn {
    color: #4B5563;  /* gray-600 */
    transition: all 0.2s ease;
}

.minute-btn:hover {
    background-color: rgba(206, 235, 231, 0.3);
}

.minute-btn.active {
    background-color: #2FA69C;
    color: white;
}

.time-display {
    font-family: 'Inter', monospace;
    letter-spacing: 2px;
    color: #4B5563;  /* gray-600 */
}

/* Time picker drawer styles */
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.drawer-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

/* Select2 Custom Styling */
.select2-container--classic .select2-selection--multiple {
    background-color: white !important;
    border: 1px solid rgba(47, 166, 156, 0.3) !important;
    border-radius: 0.5rem !important;
    min-height: 48px !important;
    padding: 6px 36px 6px 12px !important;
    position: relative !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 0.5rem center !important;
    background-repeat: no-repeat !important;
    background-size: 1.5em 1.5em !important;
}

/* Fix the search field background */
.select2-container--classic .select2-selection--multiple .select2-search--inline .select2-search__field {
    background-color: transparent !important;
    color: #4B5563 !important;  /* gray-600 */
    font-family: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 24px !important;
    min-width: 100px !important;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Fix the chevron */
.select2-container--classic .select2-selection--multiple:after {
    display: none !important;
}

/* Rotate the background image when dropdown is open */
.select2-container--classic.select2-container--open .select2-selection--multiple {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M14 12l-4-4-4 4'/%3e%3c/svg%3e") !important;
}

/* Selected items */
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #2FA69C !important;
    border: none !important;
    border-radius: 0.375rem !important;
    padding: 2px 8px !important;
    margin: 2px !important;
    color: white !important;
}

/* Remove button */
.select2-container--classic .select2-selection__choice__remove {
    color: white !important;
    margin-right: 6px !important;
    border: none !important;
}

.select2-container--classic .select2-selection__choice__remove:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

/* Dropdown styling */
.select2-container--classic .select2-dropdown {
    background-color: white !important;
    border: 1px solid rgba(47, 166, 156, 0.3) !important;
    border-radius: 0.5rem !important;
    margin-top: 4px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

.select2-container--classic .select2-results__option {
    padding: 8px 12px !important;
    color: #4B5563 !important;  /* gray-600 */
}

.select2-container--classic .select2-results__option--highlighted {
    background-color: rgba(47, 166, 156, 0.1) !important;
    color: #2FA69C !important;
}

.select2-container--classic .select2-results__option[aria-selected=true] {
    background-color: transparent !important;
}

/* Placeholder */
.select2-container--classic .select2-search__field::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
}

/* Additional Select2 styling fixes */
.select2-container--classic {
    width: 100% !important;
}

.select2-selection--custom {
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
}

/* Fix placeholder appearance */
.select2-container--classic .select2-selection--multiple .select2-search--inline {
    flex: 1 !important;
    min-width: 100px !important;
}

.select2-container--classic .select2-selection--multiple .select2-search--inline .select2-search__field {
    margin-top: 0 !important;
    height: 38px !important;
    width: 100% !important;
    padding: 8px 0 !important;
}

/* Ensure the placeholder is visible by default */
.select2-container--classic .select2-selection--multiple:not(:focus):not(:hover) .select2-search__field::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
}

/* Fix dropdown arrow positioning */
.select2-container--classic .select2-selection--multiple:after {
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 12px !important;
    pointer-events: none !important;
    position: absolute !important;
}

/* Fix selected items appearance */
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
    margin: 0 !important;
    float: none !important;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

.select2-container--classic .select2-search--inline {
    margin: 0 !important;
    padding: 0 !important;
    height: 24px !important;
    flex: 1 !important;
}

.select2-container--classic .select2-search--inline .select2-search__field {
    margin: 0 !important;
    padding: 0 !important;
    height: 24px !important;
    min-width: 100px !important;
    color: white !important;
    font-family: inherit !important;
}

/* Fix the dropdown arrow */
.select2-container--classic .select2-selection--multiple::after {
    content: "\f078" !important; /* FontAwesome chevron-down */
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: white !important;
    pointer-events: none !important;
}

.select2-container--classic.select2-container--open .select2-selection--multiple::after {
    transform: translateY(-50%) rotate(180deg) !important;
}

/* Map styling */
#map {
    width: 100%;
    height: 300px;
    border-radius: 0.5rem;
    margin: 1rem 0;
    border: 1px solid rgba(47, 166, 156, 0.3);
    z-index: 1;
}

/* Style the geocoder control */
.leaflet-control-geocoder {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(47, 166, 156, 0.3) !important;
    border-radius: 0.5rem !important;
}

.leaflet-control-geocoder-form input {
    background: transparent !important;
    color: white !important;
    border: none !important;
    padding: 0.5rem !important;
    width: 100% !important;
}

.leaflet-control-geocoder-form input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.leaflet-control-geocoder-alternatives {
    background: rgb(6 78 59 / 0.95) !important;
    border: 1px solid rgba(47, 166, 156, 0.3) !important;
    border-radius: 0.5rem !important;
    color: white !important;
}

.leaflet-control-geocoder-alternatives li:hover {
    background: rgba(47, 166, 156, 0.1) !important;
}

/* Country Select Styling */
select[name="clinic_country"] {
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 0.5rem center !important;
    background-repeat: no-repeat !important;
    background-size: 1.5em 1.5em !important;
    padding-right: 2.5rem !important;
}

select[name="clinic_country"] option {
    background-color: rgb(6 78 59 / 0.95);
    color: white;
    padding: 0.5rem;
}

select[name="clinic_country"]:focus {
    outline: none;
    ring: 2px;
    ring-color: rgb(245 158 11);
}

/* Toggle Switch Styling */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(206, 235, 231, 0.3);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid rgba(47, 166, 156, 0.3);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background-color: #2FA69C;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: rgba(47, 166, 156, 0.2);
}

input:checked + .toggle-slider:before {
    transform: translateX(29px);
}

/* Dropdown Styling */
select {
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 0.5rem center !important;
    background-repeat: no-repeat !important;
    background-size: 1.5em 1.5em !important;
}

select option {
    background-color: rgb(6 78 59 / 0.95) !important;
    color: white !important;
    padding: 0.5rem !important;
}

select:focus {
    outline: none !important;
    ring: 2px !important;
    ring-color: rgb(245 158 11) !important;
}

/* Custom Button Styles */
.btn-primary {
    @apply bg-gradient-to-r from-[#0E7768] to-[#2FA69C] text-white;
}

.btn-secondary {
    @apply bg-white text-[#2FA69C] border border-[#2FA69C];
}

/* Custom Input Styles */
.form-input {
    @apply bg-white border border-[#CEEBE7] text-gray-600 focus:ring-[#2FA69C] focus:border-[#2FA69C];
}

/* Custom Card Styles */
.card {
    @apply bg-white border border-[#CEEBE7] shadow-lg rounded-xl;
}

/* Animation Classes */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Gradient Text Effect */
.text-gradient {
    background: linear-gradient(to right, #0E7768, #2FA69C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
}

/* Custom Focus Styles */
*:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 166, 156, 0.2);
}

/* ... rest of the CSS ... */ 