    :root {
        --primary-site-color: #ff9b0b;
    }


    /* booking-room-css */
    .booking-room-pre {
        width: 100%;
        display: flex;
        gap: 1rem;
        align-items: center;
        padding: 1rem;
        border-bottom: 1px solid var(--primary-site-color);
    }

    .booking-room-pre:last-child {
        border-bottom: none;
    }

    .booking-room-pre .room-img {
        /* width: 40%; */
        padding: 0.5rem;
        border: 1px solid var(--primary-site-color);
    }

    @media screen and (max-width:575px) {
        .booking-steps {
            gap: 0.5rem;
            padding: 0.5rem;
            margin: auto;
        }

        .booking-step-card {
            padding: 0.4rem 0.8rem;
        }

        .booking-step-card h5 {
            font-size: 16px;
            font-weight: 600;
        }

        /* .calendar {
        width: 100%;
    }
    .calendar-dates div {
        padding: 6px;
    } */

        .booking-room-pre {
            flex-direction: column;
            padding: 0;
            margin-bottom: 1rem;
        }

        .booking-room-pre .room-img {
            width: 100%;
        }
    }

    /* booking-room-css */


    /* other-items-css */
    .booking-steps {
        display: flex;
        align-items: center;
        /* border-radius: 1rem; */
        /* box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset; */
        padding-top: 1rem;
        width: fit-content;
    }

    .booking-step-card {
        padding: 0.6rem 1.2rem;
        text-decoration: none;
        display: flex;
        gap: 1rem;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        border-bottom: 2px solid #d8d8d8;
    }


    .booking-step-card:hover {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

    .booking-step-card.active {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        background-color: #fff1cc5c;
        border-bottom: 2px solid var(--primary-site-color);
    }

    .booking-step-card h5 {
        color: #747474;
    }

    .booking-step-card.disabled h5 {
        color: #808080;
    }

    .booking-step-card.active h5 {
        color: #000;
    }

    .flex-1 {
        flex: 1;
    }

    form.reservation-form {
        flex-direction: unset;
        gap: unset;
        flex-wrap: wrap;
    }

    .reservation-card {
        padding: 1rem;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        border-radius: 1rem;
        background-color: white;
    }

    .reservation-card .tac-head::before {
        content: "\f058";
        /* check-circle */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 0.35em;
        color: var(--primary-site-color);
    }

    /* other-items-css */

    .cstm-form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .cstm-form-group .cstm-input {
        padding: 0.5rem 1rem;
        border: 1px solid #aaa;
        transition: border 0.3s ease-in-out;
        border-radius: 0;
    }

    .cstm-form-group .cstm-input:focus,
    .cstm-form-group .cstm-input:hover {
        outline: none;
        border: 1px solid var(--primary-site-color);
    }

    .cstm-btn-primary {
        padding: 0.5rem 1rem;
        text-decoration: none;
        background-color: #eba330;
        border: 1px solid #eba330;
        color: white;
        font-size: 1.2rem;
        font-weight: 600;
        text-align: center;
        min-width: 200px;
    }

    .cstm-btn-secondary {
        padding: 0.5rem 1rem;
        text-decoration: none;
        color: var(--primary-site-color);
        border: 1px solid var(--primary-site-color);
        font-size: 1.2rem;
        font-weight: 600;
        text-align: center;
        min-width: 200px;
    }

    .calendar-container {
        max-width: 420px;
        margin-bottom: 30px;
        /* border: 1px solid #ccc; */
        padding: 20px;
        border-radius: 8px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

    }

    .selectors {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
    }

    .calender-select {
        padding: 8px;
        font-size: 16px;
    }

    .calender-select {
        flex: 1;
    }

    button {
        cursor: pointer;
    }

    #reset-selection {
        flex: 0 0 auto;
    }

    .nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    #calendar-title {
        font-weight: bold;
    }

    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        text-align: center;
    }

    .calendar-grid div {
        padding: 10px 0;
        /* border: 1px solid #e0e0e0; */
        user-select: none;
    }

    .calendar {
        padding: 1rem;
        width: 100%;
        border: 1px solid #ccc;
    }

    .day-name {
        font-weight: bold;
        background-color: #f5f5f5;
        cursor: default;
    }

    .past-date {
        color: #aaa;
        /* background-color: #f0f0f0; */
        cursor: not-allowed;
    }

    .today-date {
        background-color: #007bff;
        color: white;
        font-weight: bold;
    }

    .in-range {
        background-color: #faefbc;
        /* Light Blue */
        color: #000;
        border-radius: 0;
    }

    .red-marked {
        background-color: #fa000094 !important;
        color: white;
    }

    .disabled {
        color: #ccc;
        /* background: #eee; */
        cursor: not-allowed;
    }

    .selected-start,
    .selected-end,
    .red-marked.selected-start {
        background-color: #ffd000;
        /* Blue */
        color: white;
        font-weight: bold;
    }

    .calendar-icon-btn {
        height: 40px;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: white;
        padding: 0.5rem;
        border: none;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 4px 0px;
        border-radius: 0.5rem;
    }

    .calendar-icon-btn:hover {
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 10px 0px;
    }

    .calendar-icon-btn svg {
        color: rgb(47, 47, 47);
    }

    .slots-clr-box {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .slot-box {
        display: flex;
        gap: 1rem;
        font-size: 1rem;
        align-items: center;
    }

    .slot-box span {
        width: 20px;
        height: 20px;
    }

    .tag-main {
        background-color: #ca790735;
        padding: 0.5rem 1rem;
        display: flex;
        gap: 0.5rem;
        align-items: center;
        width: fit-content;
    }

    .tag-main svg {
        width: 25px;
        height: 25px;
    }

    .bg-green {
        background-color: rgb(123, 208, 123);
    }

    .bg-red {
        background-color: rgb(202, 101, 101);
    }

    .bg-yellow {
        background-color: rgb(255, 238, 0);
    }

    .bg-blue {
        background-color: rgb(32, 51, 255);
    }

    .bg-grey {
        background-color: #a2a2a2;
    }



    /* thankyou-page */
    .thankyou-page {
        height: 100vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .thankyou-page .card-1 {
        background-color: var(--primary-site-color);
        padding: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }

    .thankyou-page .card-1 h1 {
        font-size: 50px;
        color: rgb(3, 3, 3);
        font-weight: 700;
    }

    .thankyou-page .card-1 p {
        font-size: 24px;
        color: rgb(63, 63, 63);
    }

    .thankyou-page .card-2 {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
        margin: 2rem 0;
        padding: 2rem;
        border-top: 4px solid var(--primary-site-color);
    }

    .thankyou-page .card-2 .booking-id {
        padding: 0.5rem 1rem;
        border: 1px solid #dadada;
        border-radius: 0.5rem;
        min-width: 200px;
        font-size: 18px;
    }

    .thankyou-page .card-2 .text {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 0;
    }

    .thankyou-page .card-2>div {
        display: flex;
        gap: 1rem;
    }

    .thankyou-page .card-2 i {
        font-size: 1.5rem;
        padding: 0.5rem;
        /* width: 30px; */
        line-height: 1;
        /* height: 30px; */
        background-color: var(--primary-site-color);
        border-radius: 1rem;
        color: white;
    }

    .thankyou-logo {
        width: 250px;
        padding: 2rem;
        margin: 0 auto;
    }

    @media screen and (max-width:575px) {
        .thankyou-page .card-1 h1 {
            font-size: 30px;
        }

        .thankyou-page .card-2>div {
            flex-wrap: wrap;
        }
    }


    @media screen and (max-width:990px) {
        .thankyou-page .card-1 h1 {
            font-size: 40px;
        }

        .thankyou-page .card-1 p {
            text-align: center;
        }
    }
