/* ============================================
    Doctor Page Styling
============================================ */
.page-title {
    text-align: center;
    margin: 40px 0 20px;
    color: #013220;
    font-family: "Sora", sans-serif;
    font-weight: 600;
    font-size: 38px;
}

.doctor-search-container {
    max-width: 1440px;
    margin: auto;
    padding: 0 20px;
}

.doctor-schedule-page-wrapper h2 {
    text-align: center;
    color: #013220;
    font-family: "Sora";
    font-size: 32px;
    margin: 0;
}

.doctor-schedule-page-wrapper {
    padding: 30px 0 0 0;
}

.api-doctors-container {
    margin-top: 50px;
}

.no-data {
    text-align: center;
    padding: 80px;
    color: #888;
}


/* load more */
.load-more-wrapper {
    text-align: center;
    margin: 40px 0 26px 0;
    display: none;
}

.load-more-wrapper button#load-more-btn {
    padding: 12px 24px;
    border: 2px solid #013220;
    color: #013220;
    font: 500 16px 'Sora';
    background: #fff;
    border-radius: 30px;
    cursor: pointer;
}

/* Custom Animated Spinner with Your Image */
.loading-message {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #013220;
    gap: 20px;
}

.lds-spinner {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto;
}

.doctor-schedule-page-wrapper p.description {
    font: 400 16px 'Sora';
    text-align: center;
    line-height: 28px;
    max-width: 850px;
    margin: auto;
}

.lds-spinner div {
    width: 100%;
    height: 100%;
    animation: spin 2.5s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lds-spinner img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(1, 50, 32, 0.15));
}

/* Smooth infinite rotation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Current day header */
.current-day-header {
    font-family: "Sora", sans-serif;
}

/* Main grid container */
.doctors-schedule-grid {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Grid row - responsive layout */
.grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns on desktop */
    gap: 24px;
    margin-bottom: 30px;
}

/* Search and filter wrapper */
.search-and-filter-wrapper {
    display: flex;
    justify-content: center;
    padding-bottom: 0;
    gap: 20px;
    margin-top: 30px;
}

/* Modern doctor card styling */
.doctor-card-modern {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.experience img,
.language img {
    width: 16px;
    height: 16px;
}

.experience {
    display: flex;
    gap: 5px;
    align-items: center;
}

/* Card hover effect */
.doctor-card-modern:hover {
    transform: translateY(-8px);
}

/* Inner card content */
.doctor-inner {
    padding: 15px 15px 0;
}

/* Card header with avatar and info */
.doctor-card-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

/* Doctor avatar/image */
.doctor-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #f0f0f0;
}

/* Doctor name styling */
.doctor-card-header h3.doctor-name {
    justify-content: flex-start;
    margin: 0;
}

/* Booking button hover effect */
.doctor-card-actions a.booking-appoinment-btn:hover {
    background: #013220;
    color: #fff;
}

/* Outline button hover effect */
.doctor-card-actions a.btn-outline:hover {
    background: transparent;
    color: #013220;
}

/* Doctor name link */
.doctor-name a {
    color: #013220;
    font: 600 20px "Sora";
    text-decoration: none;
}

.doctor-name a:hover {
    color: #013220;
}

/* Doctor title/position */
.doctor-title {
    font-size: 16px;
    color: #555;
    margin: 8px 0 12px;
    font-weight: 600;
}

/* Specialty tag badge */
.specialty-tag {
    /* background: #e8f5e8; */
    color: #013220;
    /* padding: 6px 14px;
    border-radius: 10px; */
    font: 500 13px "Sora";
    /* border: 1px solid #c8e6c8; */
}

/* Department filter select styling */
.search-and-filter-wrapper select.department-select {
    width: 340px;
    font: 400 18px "Sora";
    line-height: 24.51px;
    text-align: left;
    color: #000000b2;
    border: 1px solid #0000003b;
    padding: 14px 17.42px;
    border-radius: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url(/wp-content/uploads/2024/06/select-arow.png);
    background-repeat: no-repeat;
    background-position-x: 93%;
    background-size: 15px;
    background-position-y: 19px;
}

/* Doctor metadata section (experience, fees, etc.) */
.doctor-meta {
    /* display: flex;
    justify-content: space-between; */
    padding: 18px 0;
    border-top: 1px solid #eee;
}

.meta-item div,
.meta-item div {
    flex-basis: 100%;
    display: flex;
    align-items: start;
    gap: 5px;
    color: #013220;
    font-family: 'Sora';
    flex-wrap: wrap;
    flex-direction: column;
}
.doctor-card-modern.show {
    display: flex;
    justify-content: space-between;
    opacity: 1;
    transform: translateY(0);
}

/* Individual metadata item */
.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
}

.doctor-info .language {
    display: flex;
    gap: 5px;
    align-items: center;
}

/* Metadata icon */
.meta-item img {
    width: 18px;
    height: 18px;
}

.doctor-meta .meta-item.degree {
    margin-bottom: 6px;
    align-items: center;
}

/* Metadata value (bold) */
.meta-item strong {
    font-size: 15px;
    color: #000000b2;
    display: block;
    line-height: 24px;
    font-family: 'Sora';
    font-weight: 500;
}

/* Metadata label */
.meta-item span {
    color: #666;
    font-size: 13px;
}

/* Card action buttons container */
.doctor-card-actions {
    display: flex;
}

/* Action button styling */
.doctor-card-actions a {
    flex: 1;
    padding: 14px;
    text-align: center;
    font: 500 15px "Sora";
    text-decoration: none;
    transition: 0.3s;
}

/* Outline button (left side) */
.btn-outline {
    border: 2px solid #013220;
    color: #013220;
    border-radius: 0 0 0 8px;
}

.btn-outline:hover {
    background: #013220;
    color: #fff;
}

/* Solid button (right side) */
.btn-solid {
    background: #013220;
    color: #fff;
    border-radius: 0 0 8px 0;
}

.btn-solid:hover {
    background: #b10202;
}

input#doctor-search-input {
    font: 400 18px 'Sora';
    padding: 14px 40px 14px 17px;
    border: 1px solid #0000003B;
    border-radius: 10px;
    max-width: 400px;
    width: 280px;
    background: url(https://stage2.cmcludhiana.in/wp-content/uploads/2025/11/search1.png) no-repeat 95% center / 20px;
}

/* Pagination container */
.schedule-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 50px 0 30px;
    flex-wrap: wrap;
}

/* Pagination button styling */
.page-btn,
.page-number {
    padding: 10px 18px;
    background: transparent;
    border: 2px solid #013220;
    color: #013220;
    border-radius: 30px;
    font: 500 16px "Sora";
    cursor: pointer;
}

/* Active and hover states for pagination */
.page-number.active,
.page-number:hover,
.page-btn:hover:not(:disabled) {
    background: #013220;
    color: #fff;
}

.doctors-schedule-grid-api {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Disabled pagination button */
.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.doctors-loader-overlay .loader-spinner {
    text-align: center;
}




/* ============================================
                RESPONSIVE DESIGN BREAKPOINTS
        ============================================ */


@media (max-width: 1250px) and (min-width: 1025px) {
    .grid-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .meta-item.fees div,
    .meta-item.degree div {
        font-size: 13px;
    }

    .doctor-card-header {
        gap: 12px;
    }

    .doctor-card-actions a {
        font: 500 12px "Sora";
    }

    .meta-item strong,
    .doctor-info .language div,
    .doctor-info .experience div {
        font-size: 14px;
    }
}

/* Tablet view - 2 columns */
@media (max-width: 1024px) and (min-width: 992px) {
    .grid-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .meta-item.fees div,
    .meta-item.degree div {
        font-size: 13px;
    }

    .doctor-card-header {
        gap: 12px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .grid-row {
        grid-template-columns: 1fr;
    }
}

/* Mobile view - 1 column */
@media (max-width: 767px) {
    .grid-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .doctor-info .language div,
    .doctor-info .experience div {
        font-size: 14px;
    }

    .load-more-wrapper {
        margin: 30px 0 50px 0;
    }

    .experience {
        margin-bottom: 4px;
    }

    .doctor-card-actions a {
        font: 500 13px "Sora";
    }

    .doctor-name a {
        font: 600 18px "Sora";
    }

    .doctor-card-modern:hover {
        transform: translateY(0);
    }

    .doctor-schedule-page-wrapper p.description {
        font: 400 14px 'Sora';
    }

    .search-and-filter-wrapper {
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .api-doctors-container {
        margin-top: 30px;
    }
}

/* Skeleton css */
/* Hide real cards until JS loads them */
.doctor-card-modern {
    display: none;
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}





/* Skeleton Shimmer Animation */
@keyframes skeletonShimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: 200px 0;
    }
}

.skeleton-card {
    height: 280px;
    /* Approx height of doctor card */
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-image: linear-gradient(90deg, #eee 0px, #f5f5f5 40px, #eee 80px);
    background-size: 200px 100%;
    animation: skeletonShimmer 1.5s infinite linear;
    margin-bottom: 20px;
}

.skeleton-avatar {
    width: 100%;
    height: 150px;
    background: #ddd;
    border-bottom: 1px solid #ccc;
}

.skeleton-line {
    height: 14px;
    margin: 8px 12px;
    background: #ddd;
    border-radius: 6px;
}

.skeleton-line.short {
    width: 50%;
}

.skeleton-line.long {
    width: 80%;
}

.skeleton-meta {
    display: flex;
    justify-content: space-between;
    margin: 12px;
}

.skeleton-button {
    height: 36px;
    margin: 10px 12px;
    border-radius: 6px;
    background: #ddd;
}

/* end skeleton css */

/* ============================================
            Doctor Detail Page Styling
        ============================================ */

/* Spinner Overlay – Full screen centered */
.body-no-scroll {
    overflow: hidden;
}

.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease;
}

.spinner {
    width: 80px;
    height: 80px;
    animation: spin 1.2s linear infinite;
}

/* Rotate animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Optional: hide when done */
.spinner-hidden {
    opacity: 0;
    pointer-events: none;
}

.doctor-header-bar {
    padding: 100px 20px 50px 20px;
    max-width: 1540px;
    margin: auto;
}

a.read-more-btn img {
    position: relative;
    top: 0;
    object-fit: contain;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

a.read-more-btn {
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.stat-item strong.experience {
    margin-bottom: 5px;
}

.read-more-btn:hover img {
    transform: translateX(8px);
}

.title-banner-content {
    text-align: center;
}

.title-banner-content h1 {
    font: 700 50px "ubuntu";
    margin: 0;
    line-height: 60px;
}

.doctor-page-title-banner {
    background: linear-gradient(#000000c2, #000000c2),
        url("/wp-content/uploads/2025/12/06662b72b11623decbb00829d23c45a4bef0e192.jpg") center/cover no-repeat;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-page-title-banner .breadcrumb-trail {
    margin-bottom: 20px;
    font: 400 18px "Sora", sans-serif;
    color: #fff;
}

.breadcrumb-trail a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-trail span.current {
    color: #ffff00;
    text-decoration: underline;
}

.doctor-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    border: 1px solid #cbd5e1;
    box-shadow: 0px 0px 14px 0px #0132200f;
    border-radius: 10px;
    padding: 20px 21px;
    position: relative;
}

.loading-message.profile-spinner {
    margin: 120px 0;
}

/* Full-screen overlay spinner – same as Doctors List page */
.profile-overlay-spinner {
    position: fixed;
    cursor: pointer-none;
    left: 0;
    width: 100%;
    height: 80%;
    background: rgba(255, 255, 255, 0.95);
    /* light white overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    /* above everything */
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.profile-overlay-spinner.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Disable scrollbar + prevent scroll bounce */
body.spinner-active {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

.lds-spinner {
    width: 90px;
    height: 90px;
}

.lds-spinner img {
    width: 100%;
    height: 100%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}




.doctor-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.doctor-header-container img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.doctor-basic-info .doctor-name h2 {
    font-family: "libre caslon text", sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #000;
    line-height: 24px;
}

.doctor-basic-info .title {
    font: 400 14px "open sans", sans-serif;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 21px;
}

.doctor-basic-info .qualifications {
    font: 400 14px "open sans", sans-serif;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 21px;
}

.doctor-basic-info .speaks {
    font: 400 14px "open sans", sans-serif;
    color: #1e293b;
    line-height: 21px;
    text-transform: capitalize;
}

.available-badge::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #013220;
}

.available-badge {
    position: relative;
    text-transform: capitalize;
    background: #01322014;
    color: #013220;
    font: 500 13px "open sans", sans-serif;
    padding: 6px 12px 6px 24px;
    border-radius: 6px;
}

.hospital-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    font: 400 14px "open sans", sans-serif;
    color: #1e293b;
    line-height: 21px;
}

.hospital-info .bell {
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    width: 32.8px;
    height: 32.8px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.hospital-info .bell img {
    width: 16px;
    height: 16px;
    border: none;
    border-radius: 0;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font: 500 14px "open sans", sans-serif;
    gap: 8px;
    margin-top: 16px;
    color: #013220;
}

.reviews-count {
    color: #000;
    font: 500 14px "inter", sans-serif;
    text-decoration: underline;
}

/* Right Side - Fees + Book Button */
.doctor-header-right {
    text-align: right;
    flex-shrink: 0;
}

.doctor-header-right .fees {
    display: flex;
    align-items: center;
    font: 600 14px "inter", sans-serif;
    gap: 10px;
    color: #1e293b;
    margin: 16px 0 15px 0;
    justify-content: flex-end;
}

.doctor-header-right .book-appointment-btn {
    background: #013220;
    color: white;
    padding: 12.3px 21.2px;
    border-radius: 6px;
    font: 600 16px "open sans", sans-serif;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.weekdays-slider-container .slick-list {
    width: 90%;
}

.doctor-header-right .book-appointment-btn:hover {
    background: #013220;
    border: none;
}

.doctor-header-bar img {
    width: 177.5px;
    height: 177.5px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.stat-item img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    width: 22px;
    height: 22px;
    margin-top: 3px;
}

.rating span.stars img {
    width: 79px;
    object-fit: contain;
    height: 15px;
    border: none;
    border-radius: 0;
}

.rating span.txt {
    font: 500 14px "inter", sans-serif;
    color: #1e293b;
}

.doctor-bio .full-text.show {
    margin-top: 14px;
}

.short-text .edu-item,
.full-text.show .edu-item {
    margin-bottom: 10px;
}

/* Sticky Booking Sidebar */
.booking-section-sticky {
    position: sticky;
    top: 50px;
    z-index: 99;
}

/* For smaller screens, reset sticky behavior */
@media (max-width: 992px) {
    .booking-section-sticky {
        position: static;
        top: auto;
        margin-top: 30px;
        width: 100%;
    }
}

.edu-item.social-item .social-icon {
    width: 35px;
    height: 35px;
    background: #e8f5e8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.edu-item.social-item .social-icon i {
    color: #013220;
}

.stat-item .inner-item {
    text-align: left;
}

.doctor-info h1 {
    font-family: "Ubuntu", sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1f1e1e;
    line-height: 40px;
}

.doctor-info .title {
    font-size: 16px;
    color: #01684f;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: "open sans";
}

/* Department / Specialty Badges */
.department-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.dept-badge {
    background: #01684f;
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    font-family: "open sans", sans-serif;
    box-shadow: 0 2px 8px rgba(1, 104, 79, 0.2);
    transition: all 0.3s ease;
}

.full-text.show ul {
    padding: 0;
    list-style: none;
}

.full-text.show .item-title,
.short-text p.item-title {
    color: #013220;
    font: 600 20px "open sans", sans-serif;
    line-height: 30px !important;
    margin-bottom: 5px;
}

.full-text.show span.item-desc,
.short-text span.item-desc {
    font: 400 18px "open sans", sans-serif;
    line-height: 32px;
    color: #000000b2;
}

.full-text.show li {
    margin-bottom: 14px;
}

.full-text.show span {
    font: 400 16px "open sans", sans-serif;
    line-height: 1.7;
    color: #000000b2;
}

.rating span.stars {
    color: #ffca18;
}

.edu-item.social-item a.social-url {
    font: 400 16px "open sans", sans-serif;
    line-height: 1.7;
    color: #000000b2;
    text-decoration: none;
    display: flex;
}

.dept-badge:hover {
    background: #004c37;
    transform: translateY(-2px);
}

/* Stats */
.doctor-stats-bar {
    display: flex;
    gap: 50px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font: 500 14px "open sans";
}

.stat-item strong {
    display: block;
    font: 500 18px "open sans";
    color: #01684f;
    font-weight: 700;
}

.edu-item.social-item .social-icon {
    width: 35px;
    height: 35px;
    background: #01322014;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
}

.edu-item.social-item {
    display: flex;
    flex-wrap: wrap;
    font: 600 18px "open sans", sans-serif;
    line-height: 1.7;
    color: #013220;
    margin-bottom: 10;
}

.edu-item.social-item .social-icon i {
    color: #013220;
}

.edu-item.social-item span.item-desc {
    flex-basis: 100%;
    left: 48px;
    position: relative;
    top: -5px;
}

.stat-item span {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

#appointmentForm .popup-footer {
    padding-top: 10px;
    text-align: right;
}

.appointment-popup input[type="checkbox"] {
    max-width: 16px;
    height: 16px;
    width: 100%;
}

#appointmentForm label {
    width: 100%;
}

/* Main Content */
.doctor-content-wrapper {
    max-width: 1540px;
    margin: 0 auto 100px;
    justify-content: space-between;
    padding: 0 20px;
    display: flex;
    gap: 60px;
}

.doctor-content-wrapper .doctor-sidebar {
    flex-basis: 52.1%;
}

.doctor-content-wrapper .doctor-main {
    flex-basis: 40%;
    max-width: 40%;
}

.info-box {
    background: #fff;
    margin-bottom: 35px;
}

.info-box .info-txt {
    padding: 0;
}

.info-box a.read-more-btn:hover {
    color: #013220;
}

.doctor-sidebar .info-box h4 {
    margin: 0 0 5px;
    color: #1f1e1e;
    font: 700 36px "libre caslon text", sans-serif;
    line-height: 25px;
    padding: 0 0 10px;
    margin-bottom: 0;
    font-size: 25px;
}

.info-box p {
    font: 400 18px "open sans", sans-serif;
    line-height: 32px;
    color: #000000b2;
    margin: 0;
}

/* READ MORE / LESS - FIXED & WORKING */
.short-text {
    display: block;
}

.full-text {
    display: none;
    margin-top: 12px;
}

.full-text.show {
    display: block;
}

.short-text.hide {
    display: none;
}

.read-more-btn {
    color: #013220;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin-top: 15px;
    display: inline-block;
    text-decoration: none;
    font-family: "open sans", sans-serif;
}

.doctor-basic-info .doctor-name img {
    width: 16px;
    height: 16px;
    border: none;
    border-radius: 0;
}

.read-more:hover {
    text-decoration: underline;
}

.doctor-name {
    margin: 15px 0;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.weekdays-slick .slick-arrow:before {
    display: none;
}

.doctor-basic-info .doctor-name span {
    font: 400 14px "open sans", sans-serif;
    color: #012047;
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 10px 4px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.doctor-basic-info .doctor-name span:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #013220;
}

/* Loading styles for booking section */
.booking-loading {
    display: none;
    text-align: center;
    padding: 40px;
    color: #01684f;
}

@media (max-width: 1300px) and (min-width: 1025px) {
    .info-box:last-child {
        margin-bottom: 0;
    }

    div#weekdaysSlider {
        gap: 20px !important;
    }

    .weekday-item:last-child,
    .weekday-item:nth-child(5),
    .weekday-item:nth-child(4) {
        display: none;
    }

    .time-section .time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .schedule-box {
        border: 1px solid #cbd5e1;
        box-shadow: 0px 0px 14px 0px #0132200f;
        border-radius: 10px;
        padding: 30px 20px;
    }

    .doctor-content-wrapper .doctor-main {
        flex-basis: 45%;
    }
}

@media (max-width: 1024px) and (min-width: 992px) {
    .doctor-card-actions a {
        font: 500 12px "Sora";
    }

    .doctor-info .language div,
    .doctor-info .experience div {
        font-size: 14px;
    }

    .meta-item strong {
        font-size: 14px;
    }

    .info-box:last-child {
        margin-bottom: 0;
    }

    .schedule-header {
        justify-content: flex-start !important;
        margin-bottom: 20px !important;
    }

    .read-more-btn {
        margin-top: 5px;
    }

    .booking-section-sticky {
        position: relative;
        top: 0;
        z-index: 0;
        height: 706px;
    }

    .doctor-content-wrapper .doctor-main {
        flex-basis: 70%;
        max-width: 70%;
    }

    .doctor-content-wrapper {
        flex-direction: column-reverse;
        flex-wrap: wrap;
        margin: 0 auto 80px;
        gap: 40px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    div#schedule-appointment-content {
        width: 100%;
    }

    .doctor-content-wrapper .doctor-main {
        flex-basis: 100%;
        max-width: 100%;
    }

    .doctor-content-wrapper {
        margin: 0 auto 80px;
        gap: 30px;
    }

    .schedule-header {
        justify-content: flex-start !important;
        margin-bottom: 20px !important;
    }

    .read-more-btn {
        margin-top: 5px;
    }

    .booking-section-sticky {
        position: relative;
        top: 0;
        z-index: 0;
        margin-top: 0 !important;
        height: 706px;
    }

    .info-box h4 {
        font: 700 32px "libre caslon text", sans-serif;
    }

    .info-box:last-child {
        margin: 0;
    }

    .doctor-content-wrapper {
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }

    .doctor-header-container .doctor-header-left {
        width: 100%;
    }

    .doctor-header-container {
        width: 80%;
    }

    .doctor-basic-info {
        text-align: left;
    }

    .doctor-header-right {
        text-align: left;
        width: 100%;
    }

    .rating,
    .doctor-header-right .fees {
        justify-content: flex-start;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .doctor-header-container {
        flex-direction: column;
        text-align: center;
    }

    .doctor-header-bar img {
        width: 140px;
        height: 140px;
    }

    .doctor-info h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .doctor-info h1 {
        font-size: 28px;
    }

    .department-badges {
        justify-content: center;
    }

    .doctor-stats-bar {
        justify-content: center;
        gap: 30px;
    }

    .stat-item strong {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    div#schedule-appointment-content {
        width: 100%;
    }

    .doctor-content-wrapper .doctor-main {
        flex-basis: 100%;
        max-width: 100%;
    }

    .doctor-content-wrapper {
        margin: 0 auto 50px;
        gap: 30px;
    }

    .schedule-header {
        justify-content: flex-start !important;
        margin-bottom: 20px !important;
    }

    .read-more-btn {
        margin-top: 5px;
    }

    .booking-section-sticky {
        position: relative;
        top: 0;
        z-index: 0;
        height: auto;
        margin-top: 0 !important;
    }

    div#weekdaysSlider {
        gap: 20px !important;
    }

    .schedule-box {
        padding: 30px 0px !important;
    }

    button.book-bottom-btn {
        padding: 13px 10px !important;
        font-size: 16px !important;
    }

    .info-box h4 {
        font: 700 24px "libre caslon text", sans-serif;
        line-height: 28px;
    }

    .weekday-item .day-name {
        font-size: 15px;
    }

    .weekday-item {
        display: flex;
        flex-basis: 110px !important;
        gap: 6px;
        align-items: center;
        justify-content: center;
        min-height: auto !important;
        height: 34px !important;
    }

    .time-slot-btn.available {
        font: 500 13px "open sans" !important;
        padding: 9.5px 4px !important;
    }

    .weekdays-slider-container {
        margin: 0 15px 20px 15px;
    }

    .time-slot-btn.booked {
        padding: 9.5px 4px !important;
    }

    .time-slots-grid {
        gap: 8px !important;
    }

    .schedule-box .book-appoinment {
        margin: 20px 15px 0 15px !important;
    }

    .info-box:last-child {
        margin: 0;
    }

    .weekday-item:not(.weekday-item:first-child) {
        display: none;
    }

    .doctor-content-wrapper {
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }

    .doctor-header-left {
        flex-wrap: wrap;
    }

    .doctor-basic-info {
        text-align: center;
    }

    .doctor-basic-info .doctor-name {
        flex-wrap: wrap;
        justify-content: center;
    }

    .doctor-header-bar img {
        height: 180px;
        width: 160px;
    }

    .doctor-header-right {
        width: 100%;
    }

    .doctor-header-right {
        text-align: center;
    }

    .doctor-header-container {
        gap: 20px;
    }

    .title-banner-content h1 {
        font: 700 30px "ubuntu";
        line-height: 40px;
    }

    .doctor-header-bar {
        padding: 50px 15px 50px 15px;
    }

    .doctor-content-wrapper {
        padding: 0 15px;
    }

    .full-text.show .item-title,
    .short-text p.item-title {
        font: 600 18px "open sans", sans-serif;
    }

    .doctor-header-left,
    .hospital-info,
    .doctor-header-right .rating,
    .doctor-header-right .fees {
        justify-content: center;
    }

    .weekdays-slick [data-slick-index="0"] .weekday-item {
        padding: 8px 20px !important;
        max-width: max-content !important;
        margin: auto;
        display: flex !important;
    }

    .weekdays-slick button.slick-prev.slick-arrow {
        left: 40px !important;
        width: 46px !important;
        text-align: left;
    }

    .weekdays-slick button.slick-next.slick-arrow {
        right: 40px !important;
        width: 46px !important;
        text-align: right;
    }

    .appointment-popup button#closePopup {
        top: 12px !important;
        right: 15px !important;
    }

    .appointment-popup {
        top: 20px !important;
    }

    .popup-body {
        max-height: 68vh !important;
    }

    .btn-close-popup img {
        width: 26px;
    }

    .doctor-page-title-banner {
        height: 250px;
    }

    .weekdays-slider-container .slick-list {
        width: 58%;
    }
}

/* ============================================
            Schedule Booking Styling
        ============================================ */
/* Popup Overlay & Modal Styles */
.appointment-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.appointment-popup {
    background: #fff;
    width: 90%;
    margin: auto;
    position: relative;
    top: 80px;
    max-width: 600px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-header h3 {
    padding: 40px 20px;
    margin: 0;
    font: 600 20px "libre caslon text", sans-serif;
}

.popup-body {
    padding: 0 20px 40px;
    max-height: 70vh;
    overflow-y: auto;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.form-group {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
}

.form-group.full {
    flex: 100%;
}

#appointmentForm label {
    display: block;
    font: 600 16px "libre caslon text", sans-serif;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1f1e1e;
    font-size: 14px;
}

#appointmentForm input:focus,
#appointmentForm select:focus {
    border-color: #0000001f;
    box-shadow: none;
}

#appointmentForm select {
    color: #000000b2;
    padding: 10.12px 10px;
    font: 400 15px "open sans", sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url(/wp-content/uploads/2024/06/select-arow.png);
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 16px;
    background-size: 10px;
}

.appointment-popup input,
.appointment-popup select {
    color: #000000b2;
    padding: 12px 16px;
    border: 1px solid #0000001f;
    border-radius: 6px;
    font-size: 15px;
    transition: border 0.3s;
}

input:focus,
select:focus {
    outline: none;
    border-color: #013220;
    box-shadow: 0 0 0 3px rgba(1, 50, 32, 0.1);
}

.popup-footer button.btn-submit-appointment {
    background: #013220;
    color: #fff;
    border-radius: 8px;
    padding: 10px 20px;
    font: 600 16px "open sans", sans-serif;
}

.btn-close-popup {
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
}

.btn-submit-appointment {
    background: #013220;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit-appointment:hover {
    background: #01281a;
}

.required {
    color: #e74c3c;
}

/* schedule-appointment.css */
.schedule-appointment-wrapper {
    max-width: 800px;
    margin: 0;
    border-radius: 16px;
    font-family: "open sans", sans-serif;
    color: #333;
}

div#weekdaysSlider {
    display: flex;
    gap: 35px;
    justify-content: center;
}

.schedule-header button.btn-primary {
    border-radius: 10px;
    font: 600 16px "open sans", sans-serif;
    padding: 13px 20px;
}

.schedule-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.weekdays-slider-container {
    margin-bottom: 20px;
    position: relative;
}

.book-appoinment button.book-bottom-btn {
    border-radius: 8px;
    padding: 15.15px 10px;
    font-size: 18px;
    color: #fff;
    background: #013220;
    border-color: #013220;
    font-family: "open sans", sans-serif;
}

.schedule-appointment-wrapper .schedule-header h2 {
    margin: 0;
    font: 700 24px "libre caslon text", sans-serif;
    line-height: 28px;
    color: #1f1e1e;
}

.btn-primary {
    background: #013220;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

div#source_field {
    display: none;
}

.btn-primary:hover {
    background: #01281a;
}

.appointment-tabs button {
    border-radius: 10px;
    font: 500 16px "open sans";
    padding: 15px 20px;
}

.appointment-tabs {
    display: flex;
    border-radius: 12px;
    padding: 6px;
    width: 100%;
    margin-bottom: 30px;
    gap: 6px;
}

.time-title img {
    width: 24px;
}

.appointment-tabs button {
    border-radius: 8px;
    font: 500 15px "open sans";
    flex-basis: 48%;
}

.tab-active {
    background: #013220;
    color: white;
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: 600;
}

.tab-inactive {
    background: transparent;
    color: #013220;
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
}

.calendar-nav {
    text-align: center;
    margin-bottom: 20px;
}

.calendar-nav h3 {
    margin: 0;
    font-size: 20px;
    color: #1f1e1e;
    font-weight: 600;
}

.calendar-nav .nav-arrow {
    background: none;
    padding: 0;
    font-size: 28px;
    color: #ccc;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.btn-close-popup img {
    width: 30px;
}

.weekdays-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.weekdays-slider-container .weekday-item {
    padding: 8px 0;
    border-radius: 6px;
    transition: all 0.2s;
    flex-basis: 47px;
    text-align: center;
}

.weekdays-slider-container .slick-list .slick-slide {
    margin: 0 7px 0 0;
}

.weekdays-slick .weekday-item {
    padding: 8px;
    max-width: -webkit-fill-available;
}

/* Toggle Switch Styles */
.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: #ccc;
    border-radius: 34px;
    transition: 0.4s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
}

input:checked+.toggle-slider {
    background-color: #013220;
}

input:checked+.toggle-slider:before {
    transform: translateX(30px);
}

.weekday-item .day-name:not(.weekday-item:first-child .day-name) {
    margin-bottom: 6px;
}

/* .weekday-item:first-child .day-name,
            .weekday-item:first-child .day-date {
                color: #fff;
            } */
.weekday-item .day-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.weekday-item .day-date {
    font-size: 15px;
    margin-top: 1px;
    line-height: 22px;
    font-weight: 400;
}

.time-title h3 {
    margin: 0;
    font: 600 18px "open sans", sans-serif;
    line-height: 24px;
}

.time-section {
    background: #01322005;
    margin-bottom: 15px;
    border-radius: 6px;

}

.time-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 16px 0;
    border-bottom: 1px solid #eee;
}

.time-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1f1e1e;
    font-weight: 600;
}

.slot-count {
    background: #e8f5e9;
    color: #013220;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 20px 0 0 0;
}

/* This one you already have – just keep it */
.toggle-container.active {
    background: rgba(1, 50, 32, 0.1);
    border: 1px solid rgba(1, 50, 32, 0.2);
    box-shadow: 0 4px 12px rgba(1, 50, 32, 0.08);
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 16px;
    border-radius: 12px;
    background: transparent;
    transition: all 0.3s ease;
    width: 100%;
}

.toggle-container.active #toggle-status {
    color: #013220;
    font-weight: 700;
}

.time-slot-btn {
    padding: 16px 10px;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s;
}

.time-slot-btn.available {
    background: #fafbfb;
    color: #1f1e1e;
    cursor: pointer;
    font: 500 15px "open sans";
    border-radius: 6px;
    padding: 9.5px;
    border-color: #0000001f;
    height: max-content;
}

.time-slot-btn.available:hover {
    background: #01281a;
}

button.book-bottom-btn {
    border-radius: 8px;
}

.time-slot-btn.booked {
    background: #fafbfb;
    color: #1f1e1e;
    font: 600 14px "open sans";
    border-radius: 6px;
    padding: 9.5px;
    height: max-content;
    border-color: #0000001f;
}

.book-bottom-btn {
    background: #013220;
    color: white;
    border: none;
    padding: 18px 0;
    width: 100%;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.schedule-box {
    border: 1px solid #cbd5e1;
    box-shadow: 0px 0px 14px 0px #0132200f;
    border-radius: 10px;
    padding: 30px 24px;
}

.book-bottom-btn:hover {
    background: #01281a;
}

.weekdays-slick button.slick-next.slick-arrow {
    border: none;
    background: transparent;
    padding: 0 !important;
    display: block;
    width: auto;
    height: auto;
    right: 0;
}

.weekdays-slick button.slick-prev.slick-arrow {
    border: none;
    background: transparent;
    padding: 0 !important;
    display: block;
    width: auto;
    height: auto;
    left: 0;
}

.appointment-popup button#closePopup {
    border: none;
    background: transparent;
    padding: 0;
    position: absolute;
    right: 20px;
    top: 36px;
}

.appointment-popup button#closePopup img {
    width: 30px;
}

#appointmentForm textarea {
    color: #000000b2;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
}

.schedule-box .book-appoinment {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .time-section {
        padding: 15px 14px !important;
        margin-bottom: 10px;
    }

    .time-slots-grid {
        padding: 15px 0 0 0;
    }

    .form-row {
        flex-wrap: wrap;
    }

    .time-header {
        padding: 0 0 12px 0;
    }

    .popup-header h3 {
        padding: 35px 15px 25px 15px;
        font: 600 18px "libre caslon text", sans-serif;
        line-height: 32px;
    }

    .form-row .form-group {
        flex-basis: 100%;
    }

    .form-row {
        margin-bottom: 15px;
    }

    .slick-active .weekday-item,
    .weekday-item {
        background: #013220;
        color: #fff;
        padding: 8px 20px !important;
        max-width: max-content !important;
        margin: auto;
        display: flex !important;
    }

    .weekday-item .day-date {
        margin-top: 0;
    }
}


/* ============================================
            Vendor Registration Form Styling
        ============================================ */
.vendor-form-wrapper {
    max-width: 900px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-fields {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 25px;
}

#step1 .field-wrapper:last-child,
#step5 .year_business {
    flex-basis: 100%;
}

.field-wrapper {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    flex-basis: 48.5%;
}

.submission_success {
    background-color: #01322014;
    padding: 30px;
    border-radius: 10px;
}

.submission_success h3 {
    font: 600 20px/30px "libre caslon text", sans-serif;
    margin: 0 0 20px 0;
    color: #013220;
}

.submission_success h4 {
    font: 600 18px/26px "libre caslon text", sans-serif;
    margin: 0;
    color: #013220;
}

.submission_success ul {
    margin-top: 10px;
}

.submission_success ul {
    margin-top: 10px;
    list-style: none;
    border-radius: 8px;
    background: #fff;
    padding: 20px;
}

.field-wrapper label {
    display: block;
    color: #1F1E1E;
    margin-bottom: 8px;
    font: 600 14px 'libre caslon text', sans-serif;
}

.vendor-form-wrapper form button.btn.btn-next,
.vendor-form-wrapper form button.btn.btn-prev {
    background: #013220;
    border: none;
    padding: 9px 20px;
    border-radius: 6px;
    font: 500 16px 'open sans', sans-serif;
    color: #fff;
    margin: 0;
}

.field-wrapper input,
.field-wrapper select,
.field-wrapper textarea {
    border: 1px solid #0000001F;
    border-radius: 6px;
    font: 500 14px 'open sans', sans-serif;
}

.vendor-form-wrapper p.review-message {
    font: 500 15px / 18px "libre caslon text", sans-serif;
    color: #013220;
    background: #01322014;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0 0 0;
}

.field-wrapper input,
.field-wrapper textarea {
    padding: 8.5px 10px;
}

.field-wrapper select {
    padding: 10px;
}

.field-wrapper input::placeholder {
    color: #000000B2;
}

.vendor-form-wrapper p.vendor-description {
    font: 400 14px 'open sans', sans-serif;
    color: #1E293B;
    text-align: center;
    line-height: 21px;
    margin: 0;
}

.vendor-form-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url(/wp-content/uploads/2024/06/select-arow.png);
    background-size: 12px;
    background-repeat: no-repeat;
    background-position-x: 97%;
    color: #000000B2;
    background-position-y: 14px;
}

.field-wrapper input[type=file] {
    padding: 8px;
}

.error-msg {
    color: #B10202;
    font: 500 14px "open sans", sans-serif;
    margin-top: 5px;
    display: block;
}

.btn-prev {
    background: #6c757d;
    color: #fff;
}

.vendor-form-wrapper button.btn.btn-submit {
    background: #013220;
    border: none;
    padding: 10px 21.2px;
    border-radius: 6px;
    font: 600 15px 'open sans', sans-serif;
    color: #fff;
    margin: 0;
}

.submission_success ul li {
    padding: 8px 0 8px 0;
    border-bottom: 1px solid #0000001F;
    font: 400 15px/26px "open sans", sans-serif;
    color: #000000B2;
}

/* BEAUTIFUL PROGRESS BAR + STEP INDICATOR */
.steps-progress-container {
    position: relative;
    margin: 50px 0 40px;
    padding: 0 20px;
}

.progress-bar-bg {
    position: absolute;
    top: 22px;
    left: 50px;
    right: 50px;
    height: 4px;
    background: #E8E8E8;
    border-radius: 2px;
    z-index: 1;
}

.progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #013220;
    border-radius: 2px;
    transition: width 0.5s ease;
    z-index: 2;
}

.steps-tabs {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.step-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex: 1;
    transition: all 0.3s ease;
    position: relative;
}

.step-tab:last-child:after {
    visibility: hidden;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #E8E8E8;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 600 18px 'libre caslon text', sans-serif;
    transition: all 0.4s ease;
    position: relative;
    z-index: 4;
}

/* Completed Step */
.step-tab.completed .step-circle {
    background: #013220;
    color: #fff;
}

#step5 .existing_clients {
    flex-basis: 100%;
}

/* Active Step */
.step-tab.active .step-circle {
    background: #013220;
    color: #fff;
    box-shadow: 0 0 0 8px rgba(1, 50, 32, 0.2);
    transform: scale(1.1);
}

.step-label {
    font: 500 13px 'open sans', sans-serif;
    color: #666;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.step-tab.active .step-label,
.step-tab.completed .step-label {
    color: #013220;
    font-weight: 600;
    opacity: 1;
}

.form-step h3 {
    font: 600 20px "libre caslon text", sans-serif;
    line-height: 30px;
    margin: 0 0 20px 0;
}

.step-tab:after {
    content: "";
    position: absolute;
    height: 2px;
    left: 17px;
    top: 50%;
    background: #0000001F;
    width: 100%;
}

.step-tab.completed::after {
    background: #013220;
}

.vendor-form-wrapper h2 {
    margin: 0 0 5px;
    color: #1F1E1E;
    font: 700 36px/46px "libre caslon text", sans-serif;
}

@media (max-width: 991px) and (min-width: 768px) {
    .vendor-form-wrapper {
        margin: 50px 20px;
    }

    .vendor-form-wrapper .field-wrapper {
        flex-basis: 100%;
    }

    .vendor-form-wrapper p.upload-note {
        margin: 0;
    }

    .vendor-form-wrapper button.btn.btn-submit {
        margin: 0 0 0 15px;
    }
}

@media (max-width: 767px) {
    .step-circle {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #E8E8E8;
        font: 600 15px 'libre caslon text', sans-serif;
    }

    .step-tab.active .step-circle {
        box-shadow: none;
        transform: none;
    }

    .vendor-form-wrapper h2 {
        font: 700 26px / 32px "libre caslon text", sans-serif;
    }

    .steps-progress-container {
        margin: 30px 0 20px;
        padding: 0;
    }

    .vendor-form-wrapper {
        margin: 50px 15px;
    }

    p.upload-note {
        margin: 0;
    }

    .form-step h3 {
        font: 600 18px "libre caslon text", sans-serif;
    }

    .field-wrapper {
        flex-basis: 100%;
    }

    .vendor-form-wrapper form button.btn.btn-prev {
        margin: 0 10px 0 0;
    }

    .steps-tabs::-webkit-scrollbar {
        display: none;
    }

    .steps-tabs {
        overflow: auto;
        gap: 16px;
        padding-bottom: 10px;
    }
}



/* Payment Status */
button:focus-visible {
    outline: none;
}

.card-slide button {
    font: 500 15px "Sora";
}

.card-slide {
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.svg-color-primary {
    color: #3b82f6;
}

.calendar-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:12px;
    margin-top:20px;
}

.calendar-day{
    min-height:90px;
    border:1px solid #d7d7d7;
    border-radius:12px;
    background:#fff;
    position:relative;
    cursor:pointer;
    transition:0.3s;
    padding:10px;
}

.calendar-day-number{
    font-size:24px;
    font-weight:700;
    color:#1f2937;
}

.calendar-dot{
    width:8px;
    height:8px;
    border-radius:100px;
    background:#004225;
    position:absolute;
    bottom:12px;
    left:50%;
    transform:translateX(-50%);
}

.calendar-day.disabled{
    opacity:.35;
    pointer-events:none;
}

.calendar-day.active{
    border:2px solid #004225;
}

.calendar-empty{
    min-height:90px;
}

.calendar-navigation{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:24px;
}

.calendar-navigation button{
    background:#fff;
    border:1px solid #004225;
    border-radius:40px;
    padding:16px 26px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
}

#calendarMonthTitle{
    font-size:32px;
    font-weight:700;
}

.calendar-weekdays{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:12px;
    margin-bottom:14px;
}

.calendar-weekdays span{
    text-align:center;
    font-size:14px;
    font-weight:700;
    color:#6b7280;
}