 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       
        /* Top Navigation */
        .top-nav {
            background: white;
            padding: 15px 0;
            border-bottom: 1px solid #e5e7eb;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-img {
            height: 45px;
        }

        .nav-title {
            font-size: 14px;
            color: #6b7280;
        }

        .nav-actions {
            display: flex;
            gap: 12px;
        }

        .btn-login {
            background: white;
            color: #182C52;
            border: 1px solid #182C52;
            border-radius: 6px;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
        }

        .btn-signup {
            background: #182C52;
            color: white;
            border: none;
            border-radius: 6px;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
        }

        /* Filter Bar */
        .filter-bar {
            background: #e0f2fe;
            padding: 15px 0;
        }

        .filter-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }

        .filter-btn {
            background: white;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            padding: 8px 16px;
            font-size: 13px;
            color: #2c2c2c;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .filter-btn.active {
            background: #182C52;
            color: white;
            border-color: #182C52;
        }

        .search-bar-wrapper {
            flex: 1;
            max-width: 400px;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 8px 40px 8px 16px;
            border: 1px solid #d1d5db;
            border-radius: 25px;
            font-size: 13px;
        }

        .search-btn {
            position: absolute;
            right: 1px;
            top: 50%;
            transform: translateY(-50%);
            background: #182C52;
            color: white;
            border: none;
            border-radius: 0 25px 25px 0;
            padding: 6px 12px;
            cursor: pointer;
        }

        /* Main Content */
        .main-content {
            max-width: 1400px;
            margin: 30px auto;
            padding: 0 20px;
        }

        .results-header {
            margin-bottom: 20px;
        }

        .results-count {
            font-size: 20px;
            font-weight: 700;
            color: #2c2c2c;
        }

        .date-range {
            font-size: 14px;
            color: #6b7280;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .date-nav-btn {
            background: none;
            border: none;
            color: #182C52;
            cursor: pointer;
            font-size: 18px;
        }

        /* Provider Cards */
        .provider-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            display: flex;
            gap: 20px;
            /* align-items: end; */
            align-items: start;
        }

        .provider-left {
            flex: 0 0 40%;
        }

        .provider-header {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }

        .provider-photo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
        }

        .provider-info h3 {
            font-size: 16px;
            font-weight: 700;
            color: #182C52;
            margin-bottom: 4px;
            cursor: pointer;
        }

        .provider-info h3:hover {
            text-decoration: underline;
        }

        .provider-title {
            font-size: 13px;
            color: #6b7280;
            margin-bottom: 8px;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
        }

        .stars {
            color: #fbbf24;
        }

        .rating-score {
            font-weight: 600;
            color: #2c2c2c;
        }

        .review-count {
            color: #6b7280;
        }

        .provider-badges {
            display: flex;
            gap: 8px;
            margin-bottom: 12px;
        }

        .badge-custom {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
        }

        .badge-video {
            background: #e0f2fe;
            color: #0369a1;
        }

        .badge-external {
            background: #f3f4f6;
            color: #6b7280;
        }

        .network-notice {
            background: #EFEFEF;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 12px;
            color: #000000;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .network-notice i{
            color:#0A76C0;
        }
        .provider-features {
            list-style: none;
            padding: 0;
            margin-bottom: 15px;
        }

        .provider-features li {
            font-size: 12px;
            color: #6b7280;
            margin-bottom: 6px;
            padding-left: 12px;
            position: relative;
        }

        .provider-features li::before {
            content: '•';
            position: absolute;
            left: 0;
        }

       .btn-book {
        background: white;
        color: #068feb;
        border: 2px solid #068feb;
        border-radius: 50px;
        padding: 4px 12px;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        width: 100%;
        transition: all 0.2s;
        white-space: nowrap;
        margin-top: 1rem;
    }

        .btn-book:hover {
            background: #182C52;
            color: white;
        }

        /* Calendar Grid */
        .calendar-grid {
            flex: 1;
            border-left: 1px solid #dbeafe;
            padding-left: 15px;
        }

        .calendar-week {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
        }

        .calendar-header {
            text-align: center;
            font-size: 11px;
            font-weight: 600;
            color: #6b7280;
            padding: 6px 0;
            background: #F3F3F3;
            border: 1px solid #F3F3F3;
        }

        .calendar-date {
            text-align: center;
            font-size: 11px;
            padding: 4px;
            border-radius: 0;
        }

        .date-number {
            display: block;
            font-weight: 600;
            font-size: 14px;
            color: #2c2c2c;
            margin-bottom: 2px;
        }
        .date-available .date-number {
            display: block;
            font-weight: 600;
            font-size: 14px;
            color: #068feb;
            margin: 0 auto;
            background: aliceblue;
            width: 40px;
            height: 40px;
            text-align: center;
            padding: 9px;
            border-radius: 50%;
            border: 1px solid #068feb;
        }

        .date-label {
            font-size: 10px;
            color: #6b7280;
        }

        .date-available {           
            color: #0369a1;
            cursor: pointer;
        }
        .calendar-header:hover {
            background: #0A76C0;
            color: #fff;
        }
        .calendar-header:hover .date-label{
            background: #0A76C0;
            color: #fff;        
        }
        .calendar-header:hover .date-unavailable > .date-number{
            color: #ffffff;
        }
        .date-unavailable {
            color: #9ca3af;
        }
        
        
        /* Footer */
        .footer {
            background: white;
            padding: 30px 0 20px;
            border-top: 1px solid #e5e7eb;
            margin-top: 50px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .footer-logo {
            height: 50px;
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #6b7280;
            text-decoration: none;
            font-size: 14px;
        }

        .footer-links a:hover {
            color: #182C52;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #1e40af;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s;
        }

        .social-icon:hover {
            background: #182C52;
        }

        .copyright {
            font-size: 12px;
            color: #9ca3af;
        }

        .dark-footer {
            background: #182C52;
            padding: 15px 0;
            color: white;
        }

        .pagination {
            display: flex;
            justify-content: flex-end;
            gap: 5px;
            margin-top: 20px;
        }

        .page-btn {
            border: 1px solid #d1d5db;
            background: white;
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            color: #2c2c2c;
        }

        .page-btn.active {
            background: #182C52;
            color: white;
            border-color: #182C52;
        }

        .page-btn:hover:not(.active) {
            background: #f8f9fa;
        }

        @media (max-width: 1024px) {
            .provider-card {
                flex-direction: column;
            }

            .provider-left {
                flex: 1;
            }

            .calendar-week {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* ----------------- main more filter UI css  --------------- */
 .main-m-filter {
     position: fixed;
     inset: 0;
     background: #00000080;
     display: none;
 }
 .main-m-filter.show{
    display: block;
 }

 .main-m-filter .filter-panel {
     background-color: #ffffff;
     width: 320px;
     height: 100vh;
     border-top-left-radius: 15px;
     border-bottom-left-radius: 15px;
     padding: 0 20px 20px 20px;
     display: flex;
     flex-direction: column;
     margin-left: auto;
 }

 .main-m-filter .filter-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 13px 0;
     gap: 10px;
 }

 .main-m-filter .filter-title {
     font-size: 24px;
     font-weight: 500;
     color: #333;
     margin: 0;
     flex: 1;
 }

 .main-m-filter .close-btn {
     width: 24px;
     height: 24px;
     border: none;
     background: none;
     padding: 0;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .main-m-filter .close-btn svg {
     width: 24px;
     height: 24px;
 }

 .main-m-filter .filter-content {
     flex: 1;
     overflow-y: auto;
     overflow-x: hidden;
 }

 .main-m-filter .filter-section {
     padding-bottom: 26px;
     border-bottom: 1px solid #e0e0e0;
     margin-bottom: 10px;
 }

 .main-m-filter .filter-section:first-child {
     padding-top: 0;
 }

 .main-m-filter .filter-section:not(:first-child) {
     padding-top: 12px;
 }

 .main-m-filter .filter-section:last-child {
     border-bottom: none;
     padding-bottom: 0;
 }

 .main-m-filter .section-title {
     font-size: 16px;
     font-weight: 500;
     color: #333;
     margin: 0 0 20px 0;
 }

 .main-m-filter .filter-list {
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .main-m-filter .filter-item {
     display: flex;
     /* align-items: center; */
     gap: 12px;
 }

 .main-m-filter .filter-item.align-start {
     align-items: flex-start;
 }

 .main-m-filter .form-check {
     margin: 0;
     padding: 0;
     min-height: auto;
     padding-top: 4px;
 }

 .main-m-filter .form-check-input {
     width: 16px;
     height: 16px;
     border: 1px solid #cacaca;
     border-radius: 4px;
     margin: 0;
     cursor: pointer;
     flex-shrink: 0;
 }

 .main-m-filter .form-check-input:checked {
     background-color: #0A76C0;
     border-color: #0A76C0;
 }

 .main-m-filter .form-check-input:focus {
     border-color: #0A76C0;
     box-shadow: 0 0 0 0.25rem rgba(10, 118, 192, 0.25);
 }

 .main-m-filter .filter-label {
     font-size: 16px;
     color: #333;
     margin: 0;
     cursor: pointer;
     font-weight: 500;
 }

 .main-m-filter .filter-count {
     color: #777;
     font-weight: 400;
 }

 /* Custom scrollbar */
 .main-m-filter .filter-content::-webkit-scrollbar {
     width: 6px;
 }

 .main-m-filter .filter-content::-webkit-scrollbar-track {
     background: transparent;
 }

 .main-m-filter .filter-content::-webkit-scrollbar-thumb {
     background: #cacaca;
     border-radius: 3px;
 }

 .main-m-filter .filter-content::-webkit-scrollbar-thumb:hover {
     background: #999;
 }


   .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 7 columns per row */
    gap: 8px;
    padding: 10px;
}

.calendar-day {
    /* padding: 10px 5px; */
    padding: 4px 5px 6px;
    border-radius: 6px;
    text-align: center;
    font-size: 13px;
    /* min-height: 90px; */
    min-height: 74px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Available (Blue) */
.day-blue {
    background-color: #2c86b9;
    color: white;
}

/* Unavailable (Gray) */
.day-gray {
    background-color: #f3f4f6;
    color: #9ca3af;
}

.day-name { font-weight: bold; }
.appt-count { font-size: 16px; font-weight: bold; display: block; }
.appt-text { font-size: 11px; opacity: 0.9; }
/* Container for the photo/initials */
.provider-photo-container {
    width: 85px;  /* Increased from 70px */
    height: 85px; /* Increased from 70px */
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The Actual Image */
.provider-photo {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
}

/* The Initials Logo (Matches your BA image) */
.provider-photo-initials {
    /* width: 85px;
    height: 85px; */
    width: 110px;
    height: 110px;
    background-color: #2c86b9; /* Pure Black */
    color: #fff;            /* Pure White */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;    
    font-weight: 600;     
    font-size: 30px;       
    letter-spacing: -1px;  
    font-family: 'Inter', 'Arial Black', sans-serif;
}


/* 26/03/2026 new css  */

.appt-count{
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #ffffff4a;
    color: #ffffff;
    margin: 2px auto;
    /* box-shadow: inset 0 0 3px 1px #00000085; */
}
.custm-border-lg-end{
    border-right:1px solid #e2e2e2;
}


 @media (max-width: 1024px) {
     .provider-card {
         flex-direction: column;
     }

     .provider-left {
         flex: 1;
     }

     .calendar-week {
         grid-template-columns: repeat(4, 1fr);
     }
 }
 @media(max-width:991px){
    .custm-border-lg-end{
        border: 0;
    }
 }

 /* Use spaces to target nested elements */
 .calendar-week .calendar-header .date-unavailable {
    display: none !important;
}
 .calendar-week .date-number {
    display: none !important;
}