.status_heading {
    border-color: #e6e5ea;
    font-size: 13px;
    font-weight: 400;
    background: #fafafa;
    text-transform: uppercase;
    padding: 8px 15px;
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    margin-bottom: 20px;
}

.status_heading h1 {
    font-size: 32px;
    line-height: 1.4em;
    color: #000000;
    padding: 0px;
    font-family: 'DINPro_CondensedBold';
}

.status_heading span {
    font-size: 32px;
    margin-right: auto;
    margin-left: auto;
}

.status_heading span a {
    color: #000000
}

.status_heading span i {
    color: green;
}


/* #refresh img {
    width: 60px;
} */

.bookDateTime {
    text-transform: uppercase;
}

.bookDateTime h2 {
    padding: 8px 15px;
    border-color: #e6e5ea;
    border-radius: 5px;
    background: #e6e5ea;
    font-size: 21px;
    line-height: 1.4em;
    color: #000000;
    font-family: 'DINPro_CondensedBold';
    text-transform: capitalize;
    background: url(../../images/frontend_images/status_calender.svg) #e6e5ea no-repeat center left;
    background-size: 44px 22px;
    padding-left: 42px;
}

.bookDateTime ul {
    background: none;
    font-size: 0px;
    margin: 0px -5px;
    padding: 10px 0px;
}

.bookDateTime ul:first-child {
    padding-left: 0px;
}

.bookDateTime ul li {
    padding: 5px 6px;
    font-size: 16px;
    display: inline-block;
    verticle-align: top;
}

.bookDateTime_boxgreen {
    background: #009900;
    padding: 5px 10px;
    border-radius: 7px;
}

.bookDateTime ul li.blue .bookDateTime_boxgreen {
    background: blue;
}

.bookDateTime ul li span,
.bookDateTime ul li small {
    font-weight: normal;
    color: #ffffff;
    display: block;
    width: 100%;
    font-size: 18px;
    text-align: center;
}

.bookDateTime ul li span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
}

.bookDateTime ul li small {
    display: flex;
    justify-content: center;
}


/* .bookDateTime ul li small b:after {
    content: "-";
    font-size: 18px;
    padding: 0px 3px;
} */

.bookDateTime ul li small img {
    width: 15px;
    margin-left: 7px;
}

.bookDateTime ul li small img.doubleTick {
    width: 20px;
}


/* .supportType {
    width: auto!important;
    height: 15px;
    margin-top: 7px;
} */

.statusOptionsOuter {
    margin: auto;
    display: flex;
    flex-wrap: inherit;
    /*wrap*/
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.statusOptions {
    border-radius: 7px;
    border: 1px solid #009900;
    background: #009900;
    /* background: url(../../images/frontend_images/status_calender.svg) #009900 no-repeat center left;
    background-size: 44px 22px;
    padding-left: 42px; */
    width: 32%;
    padding: 0px 15px;
    /* height: 35px;
    padding: 7px;*/
    height: auto;
    text-align: center;
}

.statusOptions a {
    color: #ffffff;
    font-size: 21px;
    font-family: DINPro;
    padding: 8px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.statusOptions img {
    width: 22px !important;
    display: inline-block;
    margin: 0px 10px 0px 0px;
}

.whiteBg {
    background: none;
}

.whiteBg a {
    color: #009900;
}

@media(max-width:767px) {
    .statusOptions.listViewBtn a {
        font-size: 9px;
    }

    .statusOptionsOuter {
        margin-right: 4px;
    }

    .statusOptions a {
        font-size: 13px;
    }

    .statusOptions.switchToExecutive {
        width: 100%;
        margin: 10px 0px 0px 0px;
    }

    .statusOptions {
        width: 32%;
    }

    .statusOptions img {
        width: 16px !important;
        margin: 0px 4px 0px 0px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
    .switcher a {
        font-size: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .switcher a {
        font-size: 12px;
    }
}



/* Status Page CSS Start*/
.calendar-container {}

.calendar-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #009900;
}

.calendar-header h2 {
    font-size: 1.75em;
    padding-bottom: 0px;
    font-weight: bold;
    min-width: 130px;
}

.nav-buttons button {
    background: #009900;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
    font-weight: bold;
}

.nav-buttons button:hover {
    background: #009900;
}

.nav-buttons button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.calendar-wrapper {
    display: flex;
    gap: 40px;
    min-height: 300px;
}

.calendar-section {
    min-width: 450px;
}

.slots-section {
    flex: 1;
    min-width: 300px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 15px;
}

.day-header {
    text-align: center;
    padding: 12px;
    font-weight: bold;
    color: #333;
    border-radius: 6px;
    font-size: 1.20em;
}

.calendar-day.empty {
    cursor: not-allowed !important;
}

.calendar-day.empty:hover {
    background: #f3f3f3;
}

.calendar-day {
    text-align: center;
    padding: 5px 3px;
    background: #f3f3f3;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    font-size: 1.20em;
    font-weight: bold;
}

.calendar-day:hover {
    background: #009900;
    color: white;
}

.calendar-day.selected {
    background: #009900;
    color: white;
}

.calendar-day.past-date {
    background: #f5f5f5;
    color: #bbb;
    cursor: not-allowed;
}

.calendar-day.past-date:hover {
    background: #f5f5f5;
}

.calendar-day.has-slots {}

.current-date {
    border: 2px solid #009900;
    background: #f3f3f3 !important;
    color: #009900 !important;
}

.current-date.selected {
    background: #009900 !important;
    color: white !important;
}

.slots-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border: 2px solid #009900;
    display: flex;
    flex-direction: column;
}

.selected-date {
    font-size: 1.50em;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #009900;
    font-weight: bold;
    text-align: center;
}

.time-slots {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    align-content: start;
    overflow: visible;
}

.time-slot {
    padding: 6px 10px;
    background: #f3f3f3;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.time-slot:hover {
    background: #009900;
    border-color: #009900;
}

.time-slot:hover .slot-time {
    color: white;
}

.time-slot.selected {
    background: #009900;
    border-color: #009900;
    color: white;
}

.slot-time {
    font-weight: bold;
    color: #333;
    font-size: 1.20em;
    flex: 1;
    text-align: center;
}

.time-slot.selected .slot-time {
    color: white;
}

.slot-status {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
    background: #009900;
    color: white;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
}

.time-slot.selected .slot-status {
    background: white;
    color: #009900;
}

.no-slots {
    text-align: center;
    color: #888;
    padding: 40px 20px;
    font-style: italic;
    grid-column: 1 / span 4;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 315px;
}

.loading {
    text-align: center;
    color: #666;
    grid-column: 1 / span 4;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 315px;
    font-size: 16px;
}

.overnight-slot {
    border-color: #9C27B0;
    background: #f9f0ff;
}

.overnight-slot:hover {
    border-color: #7b1fa2;
    background: #f3e5f5;
}

.overnight-slot .slot-status {
    background: #9C27B0;
}

.whatsapp-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

.calendar-day .day-name,
.calendar-day .day-month {
    display: none;
}


@media (max-width: 1024px) {
    .calendar-wrapper {
        flex-direction: column;
        gap: 0px;
    }

    .calendar-section,
    .slots-section {
        min-width: 100%;
    }

    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE — horizontal scrolling for dates */
@media (max-width: 768px) {
    .calendar-scroll-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0px;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .calendar-scroll-wrapper::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .no-slots,
    .loading {
        min-width: 400px;
        height: 68px;
        grid-column: 1 / span 5;
        text-align: center;
    }

    /* .calendar-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
     .nav-buttons {
       display: flex;
        gap: 10px;
        width: 100%;
        justify-content: center; 
        padding-bottom: 15px;
    }*/
    .statusOptionsOuter {
        margin-bottom: 15px;
    }

    .calendar-grid {
        display: inline-flex !important;
        gap: 3px;
        width: auto;
        margin-bottom: 10px;
    }

    .calendar-day {
        min-width: 55px;
        padding: 10px 0;
        font-size: 14px;
        border-radius: 6px;
        text-align: center;
        flex-shrink: 0;
    }

    .day-header {
        display: none;
        padding: 8px;
        font-size: 12px;
    }

    .time-slot {
        padding: 6px 10px;
    }

    .slot-time {
        font-size: 18px;
    }

    /* NEW — show day above date above month on mobile */
    /*.calendar-day { display: flex; flex-direction: column; align-items: center; justify-content: center; }
            .calendar-day .day-name { font-size: 12px; color: #666; margin-bottom: 3px; }
            .calendar-day .day-number { font-size: 14px; color: #333; font-weight: bold; margin-bottom: 2px; }
            .calendar-day .day-month { font-size: 12px; color: #666; }*/
    .calendar-day .day-number {
        font-size: 18px;
    }

    .calendar-day .day-name,
    .calendar-day .day-month {
        display: block;
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    /*.calendar-container { padding: 15px; margin: 10px; }*/
    .calendar-day {
        padding: 10px 3px;
        font-size: 13px;
    }

    .selected-date {
        font-size: 16px;
    }

    .time-slot {
        padding: 6px 8px;
    }

    .statusOptionsOuter {
        margin-bottom: 15px;
    }
}

/* Status Page CSS End */