    .filter-bar {
        display: flex;
        justify-content: center;
        padding-top: 20px;
        position: relative;
        background-color: var(--white);
        box-shadow: 0 -8px 5px rgba(0, 0, 0, 0.1);
    }

    .custom-select {
        width: 80%;
        padding: 10px 40px 10px 10px;
        /* Add padding for the icon */
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 0px;
        appearance: none;
        /* Remove native arrow for cross-browser support */
        -webkit-appearance: none;
        -moz-appearance: none;
        background: none;
        /* Ensure no background interference */
    }

    .select-icon {
        position: absolute;
        top: 50%;
        right: 175px;
        /* Adjust as needed */
        transform: translateY(-50%);
        pointer-events: none;
        /* Prevent interaction with the icon */
        color: var(--color-1);
        font-size: 16px;
    }

    #calendar-navigation {
        display: flex;
        align-items: center;
        justify-content: center;
        /*    margin-bottom: 30px;*/
        /* margin-left: 140px; */
        transition: all 0.3s ease;
        background-color: #fff;
    }

    #nav-calendar {
        background-color: #fff;
        box-shadow: 0 -8px 5px rgba(0, 0, 0, 0.1);
    }

    .doctor-list {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        background-color: #fff;
    }

    .filter-bar .form-group {
        margin-bottom: 20px;
        justify-content: center;
        display: flex;
        padding: 20px;
    }

    #calendar-navigation .arrow-button {
        border: none;
        background-color: transparent;
        color: #000;
        border-radius: 50%;
        /*width: 40px;
    height: 40px;*/
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-size: 24px;
    }

    #calendar-navigation .arrow-button:hover {
        color: var(--color-2);
    }

    .hr-date-container .date-box {
    display: inline-block;
    padding: 5px;
    margin: 10px 21px 5px 21px;
    text-align: center;
    background-color: var(--color-2);
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* gap: 7px; */
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    width: 100px;
}

    .hr-date-container .date-box .day {
        display: flex;
        justify-content: center;
    }

    .doctor-list {
        /*    padding: 20px;*/
    }

    .doctor-card {
        display: flex;
        background-color: #ffffff;
        margin-bottom: 15px;
        padding: 15px;
        /*    border-radius: 8px;*/
        /*    box-shadow: 0 -8px 5px rgba(0, 0, 0, 0.1);*/
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid var(--color-3);
    }

    .doctor-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .doctor-image img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
    }

    .doctor-details {
        flex: 1;
        padding: 0 15px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .doctor-details h3 {
        margin: 0;
        font-size: 18px;
        color: var(--color-3);
        font-weight: 600;
    }

    .doctor-details p {
        margin: 4px 0;
        font-size: 14px;
        color: #7f8c8d;
    }

    .doctor-availability {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .time-slot.highlight {
        background-color: #fdd835;
        font-weight: bold;
    }

    /* Popup styles */
    .popup {
        display: none;
        /* Hidden by default */
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
        /* Black background with opacity */
    }

    .popup-content {
        position: relative;
        background-color: #e6eff4;
        margin: 2% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        text-align: center;
        border-radius: 30px;
    }

    .popup-content .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    height: 30px;
    width: 30px;
    background: var(--color-1);
    border-radius: 5px;
    color: #fff;
    line-height: 23px;
}

    .doctor-schedule-wrapper {
        display: flex;
        flex-direction: column;
    }

    .weekdays {
        display: flex;
        justify-content: space-between;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .weekday-header {
        width: 20%;
        text-align: center;
    }

    .staff-schedule {
        margin-bottom: 20px;
    }

    .availability-container {
        display: table;
        width: 100%;
        border-collapse: collapse;
        margin: 20px auto;
        max-width: 800px;
    }

    .header-row {
        display: table-row;
        background-color: #007BFF;
        color: #fff;
        text-align: center;
        font-weight: bold;
    }

    .header-cell {
        display: table-cell;
        padding: 10px;
        border: 1px solid #ddd;
    }

    /*.row {
    display: table-row;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}*/
    .profile-cell {
        display: table-cell;
        width: 25%;
        vertical-align: top;
        text-align: center;
        padding: 10px;
        border: 1px solid #ddd;
    }

    .profile-image img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-bottom: 10px;
    }

    .profile-info {
        text-align: left;
    }

    .profile-info h3 {
        margin: 5px 0;
        font-size: 18px;
    }

    .profile-info p {
        margin: 5px 0;
        font-size: 14px;
        color: #666;
    }

    .availability-cell {
        display: table-cell;
        vertical-align: top;
        padding: 5px;
        border: 1px solid #ddd;
        text-align: center;
    }

    .time-slot {
        display: inline-block;
        /*    background-color: var(--color-4);*/
        padding: 5px 10px;
        margin: 5px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        color: #000;
        border: 2px solid var(--color-1);
        border-radius: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100px;
        background-color: #f0f0f0;
    }

    .time-slot:hover {
        background-color: var(--color-1);
        color: #fff;
    }

    .hr-appoint-date-detail {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0;
    row-gap: 5px;
    }

    .hr-appoint-date-detail b {
    color: var(--color-2);
    font-weight: 700;
}

    .hr-appoint-date-detail .hr-name {
    font-size: 18px;
    font-family: var(--font-03);
    font-weight: 600;
    color: var(--color-1);
}

    .hr-appoint-date-detail .hr-address {
        font-size: 18px;
    font-family: var(--font-03);
    font-weight: 600;
    color: var(--color-1);
        text-align: left;
    }

    .hr-appoint-date-detail .hr-date {
       font-size: 18px;
    font-family: var(--font-03);
    font-weight: 600;
    color: var(--color-1);
    }

    .hr-appoint-date-detail .hr-time {
        font-size: 18px;
    font-family: var(--font-03);
    font-weight: 600;
    color: var(--color-1);
    }

    .hr-pop-img img {
        border-radius: 30px;
    }

    .hr-booking-form .appoint-btn {
        height: 50px;
        border-radius: 5px;
        color: #fff;
        text-align: center;
        background: var(--color-4);
        transition: all 0.3s ease;
        width: 100%;
        border: none;
        outline: none;
        font-size: 17px;
        text-transform: uppercase;
    }

    .hr-booking-form .appoint-btn:hover {
    background: var(--color-2);
}

    .hr-radio-card {
        text-align: center;
        box-shadow: 0px 0px 3px 3px #dddddd;
        height: auto;
        width: 280px;
        padding: 10px 15px;
        border-radius: 10px;
        display: contents;
    }

    .form-group label {
    font-size: 20px;
    margin: 5px;
    font-family: var(--font-03);
    }   
    .form-control {
    padding: 10px 25px;
    }
    .input-radio {
        box-shadow: 0px 0px 0px 1px #6d6d6d;
        font-size: 3em;
        width: 18px;
        height: 18px;
        margin-right: 7px;
        border: 4px solid #fff;
        background-clip: border-box;
        border-radius: 50%;
        appearance: none;
        transition: background-color 0.3s, box-shadow 0.3s;
    }

    .input-radio:checked {
        box-shadow: 0px 0px 0px 4px var(--color-4);
        background-color: var(--color-4);
    }

    /* Custom tooltip width */
    .tooltip-inner {
        max-width: 300px;
        /* Set your desired width */
        text-align: left;
        /* Optional: center-align the text */
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .far.fa-exclamation-circle.ms-2 {
    color: var(--color-1 ) !important;
}
    .time-slot:active {
        background-color: var(--color-1);
        color: #fff;
    }

    .time-slot-disabled {
        display: inline-block;
        /* background-color: var(--color-4); */
        padding: 5px 10px;
        margin: 5px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        color: #000;
        border: 2px solid var(--color-1);
        border-radius: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100px;
        background-color: #f0f0f0;
    }

    .time-slot {
        background-color: #ffffff;
    }

    .ui-datepicker {
        z-index: 1050 !important;
        /* Higher than modal but below the overlay */
    }

    .icon-css {
        position: static;
        transform: translateY(-140%);
        margin-right: 15px;
        float: right;
    }
    
.form-input-group {
  position: relative;
}
.form-input-group .icon-bg i {
  color: var(--color-1 ) !important;
}
.form-input-group .icon-bg {
  position: absolute;
  top: 11px;
  left: 7px;
  font-size: 14px;
}
    @media (min-width:1366px) {
        #calendar-navigation {
            /* margin-left: 235px; */
        }

        /*.hr-date-container .date-box{
        padding: 15px;
        margin: 15px;
    }*/
    }

    @media (min-width:1517px) {
        #calendar-navigation {
            /* margin-left: 414px; */
        }

        /*.hr-date-container .date-box{
        padding: 15px;
        margin: 23px;
    }*/
    }

    @media (max-width: 1024px) {
        .popup-content .close {
            top: -15px;
            right: -5px;
        }
    }
    @media(max-width:991px){
    .hr-appoint-date-detail .hr-name {
     font-size: 16px;
    }
    .hr-appoint-date-detail .hr-address {
    font-size: 16px;
    }
    .hr-appoint-date-detail .hr-date {
    font-size: 16px;
    }
    .hr-appoint-date-detail .hr-time {
    font-size: 16px;
    }
    .hr-appoint-date-detail h3 {
    display: flex;
    align-items: center;
    column-gap: 5px;
    }
    }
    @media (max-width: 768px) {
        .filter-bar {
            width: 100%;
        }

        .custom-select {
            font-size: 14px;
        }

        .select-icon {
            font-size: 14px;
            right: 92px;
            top: 100px;
        }

        #calendar-navigation {
            /* margin-left: 150px; */
        }

        .doctor-card {
            width: 75%;
        }
    .hr-appoint-date-detail .hr-name {
        font-size: 14px;
        flex-direction: column;
        align-items: start;
    }
    .hr-appoint-date-detail .hr-address {
        font-size: 14px;
        flex-direction: column;
        align-items: start;
    }
    .hr-appoint-date-detail .hr-date {
    font-size: 14px;
    }
    .hr-appoint-date-detail .hr-time {
    font-size: 14px;
    }
    }

    @media(max-width:576px) {
        .filter-bar .form-group {
            align-content: center;
            flex-wrap: wrap;
        }

        .doctor-image {
            align-items: flex-start;
        }

        .doctor-details {
            align-items: flex-start;
        }
    .hr-date-container .date-box {
       margin: 10px 3px 5px 3px;
     }
     .doctor-list {
     gap: 3px;
     }
     .time-slot-disabled {
        display: inline-block;
        padding: 5px 5px !important;
        margin: 2px !important;
        font-size: 13px !important;
     }
     .availability-cell {
      padding: 0 !important;
}
    }

    