.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-3);
        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;
    }
.filter-bar {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    position: relative;
}
.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-3);
    font-size: 16px;
}
#calendar-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
/*    margin-bottom: 30px;*/
    transition: all 0.3s ease; 
    background-color: #fff;
}
#nav-calendar {
    padding-bottom: 10px;
}
.doctor-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.filter-bar .form-group {
    margin-bottom: 20px;
    justify-content: center;
    display: flex;
    padding: 20px;
    text-align: left;
}
#calendar-navigation .arrow-button {
    border: none;
    background-color: var(--color-4);
    color: var(--color-1);
    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;
    padding: 15px 2px 15px 2px;
}
#calendar-navigation .arrow-button:hover {
    color: var(--color-3);
}
.hr-date-container .date-box {
    display: inline-block;
    padding: 5px;
    margin: 10px 25px 5px 18px;
    text-align: center;
    background-color: #5a9e7c;
    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-4);
    border-radius: 5px;
}
.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-3);
    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;
    adding: 15px 0;
}
.hr-appoint-date-detail b{
    color: var(--color-1);
    font-weight: 700;
}
.hr-appoint-date-detail .hr-name{
    font-size: 18px;
}
.hr-appoint-date-detail .hr-address{
    font-size: 18px;
    text-align: left;
}
.hr-appoint-date-detail .hr-date{
    font-size: 18px;
}
.hr-appoint-date-detail .hr-time{
    font-size: 18px;
}
.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-1);
    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;
}
.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);
    }
}

.pricing-date-time {
    column-gap: 40px;
}
.pricing-content-table {
    background-color: var(--white);
    padding: 40px 15px 0px;
    -webkit-box-shadow: 0 10px 30px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 10px 30px rgb(0 0 0 / 20%);
    box-shadow: 0 10px 30px rgb(0 0 0 / 20%);
}
  /* Card Styles */
.pricing-inner {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    padding: 15px;
    transition: all 0.3s ease-in-out;
}

.pricing-inner.selected {
    border-color: var(--color-2);
    box-shadow: 0 0 10px var(--color-2);
    transform: scale(1.05);
}

/* Checkbox Styles */


.membership-checkbox + label {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    transition: all 0.2s ease;
}

.membership-checkbox:checked + label {
    background-color: var(--color-2);
    border-color: var(--color-2);
}
.pricing-inner .form-check-input:checked {
    background-color: var(--color-2);
    border-color: var(--color-2);
    z-index: 999;
    position: absolute;
    right: 0px;
    top: -4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.pricing-inner .form-check-input {
    position: absolute;
}
/*.hr-login-form .th-password-icon {
    position: absolute;
    right: 10px;
    top: 9px;
    color: var(--color-1);
}*/
.forgot-password-link a {
    color: var(--color-1);
}
.hr-auth-popup .close-btn {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 24px;
    color: var(--color-1);
}
.hr-field-group{
    margin-bottom: 25px;
    position: relative;
}
.hr-field-group .th-password-icon {
    position: absolute;
    bottom: 5px;
    right: 17px;
    cursor: pointer;
}
/* Realtor Partnership Section */
.realtor-partnership-section {
    background: var(--color-2);
    color: white;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.2);
    position: relative;
    overflow: hidden;
}

.realtor-partnership-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.realtor-partnership-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.realtor-partnership-section > p {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.partnership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.partnership-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.partnership-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.partnership-card.featured {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    transform: scale(1.05);
}

.partnership-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.partnership-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4af37;
    color: #1e3a5f;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.partnership-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.price-large {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin: 1rem 0;
    line-height: 1;
}

.price-large span {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.partnership-card > p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.terms-note {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.9rem;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.terms-note a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.terms-note a:hover {
    border-bottom-color: #d4af37;
}

/* Pricing Info Section */
.pricing-info-section {
    background: #f8fafc;
    padding: 3rem 2rem;
    border-radius: 16px;
    margin: 3rem 0;
    /*border: 2px solid #e2e8f0;*/
}

.pricing-info-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a5f;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.pricing-info-section h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 100%;
    margin: 0 auto;
}

.info-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.info-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: #d4af37;
}

.info-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.info-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-item ul li {
    padding: 0.625rem 0;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.info-item ul li:last-child {
    border-bottom: none;
}

.info-item ul li:hover {
    color: #1e3a5f;
    padding-left: 5px;
}

.info-item ul li strong {
    color: #1e3a5f;
    font-weight: 600;
}

.info-item p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
}

.info-item p strong {
    color: #1e3a5f;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .realtor-partnership-section {
        padding: 3rem 1.5rem;
        margin: 2rem 0;
    }
    
    .realtor-partnership-section h2 {
        font-size: 2rem;
    }
    
    .partnership-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partnership-card.featured {
        transform: scale(1);
    }
    
    .partnership-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .price-large {
        font-size: 2.5rem;
    }
    
    .pricing-info-section {
        padding: 2rem 1.5rem;
    }
    
    .pricing-info-section h3 {
        font-size: 1.75rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .realtor-partnership-section h2 {
        font-size: 1.75rem;
    }
    
    .partnership-card {
        padding: 2rem 1.5rem;
    }
    
    .price-large {
        font-size: 2.25rem;
    }
    
    .pricing-info-section h3 {
        font-size: 1.5rem;
    }
}

/* Animation on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.realtor-partnership-section,
.pricing-info-section,
.partnership-card,
.info-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Print styles */
@media print {
    .realtor-partnership-section {
        background: #1e3a5f !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .partnership-card {
        break-inside: avoid;
    }
}
@media (max-width: 1024px) {
    .popup-content .close{
        top: -15px;
        right: -5px;
    }
}
@media (max-width: 768px) {
    .filter-bar {
        width: 100%;
    }

    .custom-select {
        font-size: 14px;
    }

    .select-icon {
        font-size: 14px;
        right: 92px;
        top: 100px;
    }
    
    .doctor-card{
        width: 75%;
    }
}
@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;
    }
    .pricing-inner.selected {
        border-color: var(--color-2);
        box-shadow: 0 0 10px var(--color-2);
        transform: scale(1.02);
    }
    .filter-bar h3 {
        font-size: 18px;
    }
}