.table-hgt {
    background-color: #fff;
    position: relative;
}

.dates-table {
    position: relative;
    top: -47px;
    width: 100%;
    margin: 0 auto;
}

/* General Styling */
.schedule-row {
    display: grid;
    grid-template-columns: 0.3fr 1.4fr 1.6fr 2fr 1.1fr;
}

.schedule-row div {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: center;
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    border: 1px solid #ccc;
    text-transform: capitalize;
    color: #4e4e50;
}

.schedule-row div span {
    font-size: 15px;
}

.schedule-row.header div {
    background-color: #717171;
    color: white;
}

.schedule-row.header div:first-child {
    border-top-left-radius: 10px;
}

.schedule-row.header div:last-child {
    border-top-right-radius: 10px;
}

.schedule-row .book-btn {
    padding: 10px 4px;
    color: #fff;
    cursor: pointer;
    width: 140px;
    border: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    display: block;
    margin: 0 auto;
    text-decoration: none;
    background-color: #89c63d;
}

.schedule-row .booked-btn {
    background-color: #b3b3b3;
}

.schedule-row .book-btn {
    background-color: #89c63d;
}

@media (max-width: 1200px) {}

@media (max-width: 1000px) {}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    .schedule-row .book-btn {
        margin: 0;
    }

    .schedule-row .book-btn {
        width: 150px !important;
    }

    /* -------add by sunil------- */
    .schedule-row.header div:last-child {
        border-top-right-radius: 0px;
    }

    .schedule-row div:nth-child(1) {
        grid-area: item1;
        border-right: 0.1px solid #cccccc73;
        display: none;
    }

    .schedule-row div:nth-child(2) {
        grid-area: item2;
        border-top-right-radius: 0;
        display: flex;
        border: none;
        gap: 15px;
    }

    .schedule-row div:nth-child(3) {
        grid-area: item3;
        display: flex;
        border: none;
        text-align: left;
    }

    .schedule-row div:nth-child(4) {
        grid-area: item4;
        display: flex;
        border: none;
    }

    .schedule-row div:nth-child(5) {
        grid-area: item5;
        display: flex;
        border: none;
    }

    .header {
        display: none;
    }

    .schedule-row .icons-display {
        display: block;
        margin: 0% 10px 0% 0%;
        font-size: 14px;
        color: #ffffff;
        background-color: #89c63d;
        /* padding: 7px; */
        border-radius: 2px;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .schedule-row div span i {
        color: #ffffff;
        background-color: #89c63d;
        padding: 7px;
        border-radius: 2px;
    }

    .schedule-row {
        margin-bottom: 5%;
        grid-template-areas:
            "item1 item2 item2 item2 item2"
            "item1 item3 item3 item3 item3"
            "item1 item4 item4 item4 item4"
            "item1 item5 item5 item5 item5"
        ;
    }

    /* -------add by sunil------- */

    .dates-table {
        width: 98%;
        position: relative;
        left: -15px;
    }



    .schedule-row .header {
        display: grid;
    }

    .schedule-row button {
        float: left;
    }

}

@media (max-width: 400px) {
    .schedule-row div span {
        font-size: 13px;
    }

    .schedule-row div {
        font-size: 13px;
    }
}