@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

body {
    /* font-family: "Roboto", sans-serif; */
    font-family: "Anek Bangla", sans-serif;
}

.hide-scrollbar {
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Custom toggle switches */
input[type="checkbox"].toggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 2.5rem;
    height: 1.25rem;
    background-color: #d1d5db;
    border-radius: 9999px;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
}

input[type="checkbox"].toggle:checked {
    background-color: #4ade80;
}

input[type="checkbox"].toggle::before {
    content: "";
    position: absolute;
    top: 0.125rem;
    left: 0.125rem;
    width: 1rem;
    height: 1rem;
    background-color: white;
    border-radius: 9999px;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
}

input[type="checkbox"].toggle:checked::before {
    transform: translateX(1.25rem);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 20px;
    height: 20px;
    background-color: #00dcf2;
    border-radius: 50%;
    border: 2px solid #00dcf2;
    cursor: pointer;
    z-index: 30;
}

input[type="range"]::-moz-range-thumb {
    pointer-events: all;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #00dcf2;
    cursor: pointer;
    z-index: 30;
}

/* km range slide style */
.range-slider {
    position: absolute;
    width: 100%;
    height: 3px;
    background: transparent;
    appearance: none;
    z-index: 20;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #00dcf2;
    border: 2px solid #00dcf2;
    cursor: pointer;
    z-index: 30;
    position: relative;
}

.range-slider::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #00dcf2;
    border: 2px solid #00dcf2;
    cursor: pointer;
    z-index: 30;
    position: relative;
}

/* Custom styles for dropdown */
.dropdown-chevron {
    transition: transform 0.3s ease;
}

.header_menu {
    font-family: "Glegoo", serif;
}

/* Custom styles for hero heading */
.character {
    display: inline-block;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
        1px 1px 0 #000;
}

/* Custom styles for slider */
.testimonial-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
    z-index: 1;
}

/* ===================== slider card ================== */
#prev-btn:disabled,
#next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#prev-btn:not(:disabled):hover,
#next-btn:not(:disabled):hover {
    background-color: #f3f4f6;
    transform: translateY(-50%) scale(1.05);
}

/* ===================== emoji style ================== */
#emoji-picker-container {
    z-index: 60;
}

#emoji-picker {
    --width: 200px !important;
    --height: 200px !important;
    --emoji-size: 1rem;
    --background: #fff;
    --border-color: #b1b0b0;
    --input-border-color: #b1b0b0;
    --input-font-color: #494848;
    --input-font-size: 14px;
    --category-emoji-padding: 0.5rem;
    --border-radius: 10px;
}

/* ===================== Booking Drawer style start ================== */
.body-no-scroll {
    overflow: hidden;
    height: 100vh;
}

.time-slot {
    transition: all 0.2s;
    border: 1px solid transparent;
}

.time-slot:hover {
    border-color: #93c5fd;
}

.time-slot.bg-blue-200 {
    background-color: #bfdbfe;
    border-color: #3b82f6;
    font-weight: 500;
}
/* ===================== Booking Drawer style end ================== */

.skeleton {
    background-color: #e2e2e2;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}


.selected-dog {
    border: 3px solid #2563eb !important;
        background-color: lightblue !important;

}