table tbody tr td,
table tbody tr th {
    text-align: center;
    cursor: pointer;
}

.day:hover {
    background-color: #f2f2f2;
}

.caption {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

/*.day.selected {*/
/*    background-color: #4E185B; !* Change the color as needed *!*/
/*    color: #fff;*/
/*}*/
.day.selected-range {
    background: #4E185B !important;
    color: white !important;
}

.c-m {
    margin-left: 5% !important;
}

.day {
    background: lightgreen;
}

.header {
    background-color: #4E185B !important;
}

.day.unable {
    /*background-color: gray !important;*/
    pointer-events: none;
}

.day.available-day {
    background-color: white;
    color: black;
    border-bottom: 1px solid #dee2e6;
}

table td.booked {
    background: #D28426 !important;
    /*pointer-events: none;*/
}

.time-select .booked-time {
    background: red !important;
    pointer-events: none;
}

.loader-container {
    display: none;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader {
    border: 3px solid #000;
    /* Black border */
    border-top: 3px solid transparent;
    /* Transparent border on top */
    border-radius: 50%;
    /* Circular border radius */
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    /* Spin animation */
}

/* CSS for Continue with booking button */
#btnGo {
    border-radius: 28px;
    background-color: #eca842;
    font-size: 18px;
    color: #4E185B;
    font-weight: 600;
    padding: 15px 48px;
    margin-bottom: 40px;
    display: inline-block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    /* Rotate 0 degrees */
    100% {
        transform: rotate(360deg);
    }

    /* Rotate 360 degrees */
}

.loader-calendar {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.load {
    border: 3px solid #000;
    /* Black border */
    border-top: 3px solid transparent;
    /* Transparent border on top */
    border-radius: 50%;
    /* Circular border radius */
    width: 30px;
    height: 30px;
    animation: spin-calendar 1s linear infinite;
    /* Spin animation */
}

@keyframes spin-calendar {
    0% {
        transform: rotate(0deg);
    }

    /* Rotate 0 degrees */
    100% {
        transform: rotate(360deg);
    }

    /* Rotate 360 degrees */
}

span.cp-font {
    font-size: 10px !important;
}

span.c-font {
    font-size: 10px !important;
}

@media (max-width: 820px) {
    span.cp-font {
        font-size: 8px !important;
    }

    span.c-font {
        font-size: 7px !important;
    }

    .header {
        font-size: small;
    }
}

@media (min-width: 1200px) {
    span.cp-font {
        font-size: 12px !important;
    }
}

@media(max-width: 330px) {
    .table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}