nav {
    box-shadow: 0 1px 5px #ccc;
}

.dis {
    display: block !important;
}

.doctor:hover {
    transform: translateY(0px) !important;
}

.collapsed {
    max-height: 120px;
    overflow: hidden;
    position: relative;
}

.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 30px;
    width: 100%;
    background: linear-gradient(to bottom, transparent, white);
}

.about-expert h2 {
    font-size: 1.5rem;
    border-bottom: 1px solid rgb(217, 212, 212);
    padding-bottom: 10px;
    color: var(--mainColor);
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews {
    display: flex;
    overflow-x: scroll;
    padding-bottom: 10px;
}

.review-card {
    flex: 0 0 25vw;
}

@media (max-width: 993px) {
    .review-card {
        flex: 0 0 70vw;
        padding: 20px;
    }
}

.reviews::-webkit-scrollbar {
    height: 5px;
}

.reviews::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.reviews::-webkit-scrollbar-thumb {
    background: #0097a3;
    border-radius: 10px;
}

.reviews::-webkit-scrollbar-thumb:hover {
    background: #007d8a;
}

.flatpickr-calendar,
.flatpickr-innerContainer,
.flatpickr-rContainer,
.flatpickr-days {
    width: 100% !important;
    box-shadow: none;
    margin-bottom: 10px;
}

.flatpickr-calendar .dayContainer {
    width: 100% !important;
    max-width: 100% !important;
}

.flatpickr-calendar .dayContainer .flatpickr-day {
    width: calc(100% / 7) !important;
    max-width: 100% !important;
    height: auto;
}

.flatpickr-calendar {
    border: 1px #d6d6d6 solid;
}

.clander {
    background: #fff;
    padding: 1rem !important;
    border-radius: 10px;
    box-shadow: 0 0 15px rgb(24 24 24 / 15%);
}

.loader-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #0097a3;
    border-bottom-color: transparent;
    border-radius: 50%;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.booking-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.booking-section.show {
    display: block;
}

.selected-slots {
    margin-bottom: 10px;
    text-align: right;
}

.selected-slot {
    display: inline-block;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 0 5px 5px 0;
}
