@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Manrope", sans-serif;
}
.booking-room {
    background-color: #f6fbff;
    padding: 50px;
}
.booking-room h1 {
    color: #52b8ff;
    margin-bottom: 30px;
    font-weight: 800;
}
.container {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}
#calendar {
    width: 40%;
}
.info {
    width: 60%;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
table tr.active {
    background-color: #84cdff;
}
th,
td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}
table i {
    cursor: pointer;
    transition: 0.5s;
}
table i:hover {
    color: #52b8ff;
}
#selected-date {
    font-weight: bold;
    margin-bottom: 10px;
    background: #52b8ff;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 17px;
}

#booking-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}
.form-control {
    width: calc(50% - 15px);
}
#booking-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
}

#booking-form input,
#booking-form select,
#booking-form button {
    display: block;
    padding: 9px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #dadada;
    font-family: inherit;
    cursor: pointer;
}

#booking-form button {
    font-weight: 600;
    padding: 22px;
    font-size: 13px;
    background-color: #f6fbff;
    border: 1px solid #d4e2eb;
}
.my-selected-date {
    background-color: #007bff !important;
    color: white;
    position: relative;
}
.my-selected-date .fc-daygrid-day-number {
    color: white;
}
.loader {
    border: 2px solid #000;
    border-left-color: transparent;
    width: 15px;
    height: 15px;
    animation: spin89345 1s linear infinite;
    border-radius: 50%;
    margin: 0 auto;
}

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

    100% {
        transform: rotate(360deg);
    }
}
.fc .fc-daygrid-day.fc-day-today {
    background-color: #cceaff !important;
}
.fc .fc-button-primary {
    background-color: #f0f9ff;
    color: #52b8ff;
    border: 1px solid #cae5f7;
}
/* From Uiverse.io by SalladShooter */
.preloading {
    background-color: #ffffff;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 0.5s;
    z-index: 99999;
}
.preloading h3 {
    margin-bottom: 60px;
    color: #52b8ff;
    font-weight: 800;
    font-size: 24px;
}
.loadingspinner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circle {
    background: #52b8ff;
    width: 15px;
    height: 15px;
    position: absolute;
    border-radius: 50%;
    animation: figureEight 1.5s linear infinite;
}

.circle:nth-child(2) {
    animation-delay: 0.1s;
    width: 12px;
    height: 12px;
    background: rgba(50, 120, 180, 0.5);
}

.circle:nth-child(3) {
    animation-delay: 0.2s;
    width: 10px;
    height: 10px;
    background: rgba(50, 120, 180, 0.35);
}

.circle:nth-child(4) {
    animation-delay: 0.3s;
    width: 10px;
    height: 10px;
    background: rgba(50, 120, 180, 0.15);
}

.circle:nth-child(5) {
    animation-delay: 0.4s;
    width: 10px;
    height: 10px;
    background: rgba(50, 120, 180, 0.15);
}

.circle:nth-child(6) {
    animation-delay: 0.5s;
    width: 10px;
    height: 10px;
    background: rgba(50, 120, 180, 0.15);
}

.circle:nth-child(7) {
    animation-delay: 0.6s;
    width: 10px;
    height: 10px;
    background: rgba(50, 120, 180, 0.15);
}

.circle:nth-child(8) {
    animation-delay: 0.7s;
    width: 10px;
    height: 10px;
    background: rgba(50, 120, 180, 0.15);
}

@keyframes figureEight {
    0%,
    100% {
        transform: translate(0, 0);
    }
    12.5% {
        transform: translate(50px, -25px);
    }
    25% {
        transform: translate(100px, 0);
    }
    37.5% {
        transform: translate(50px, 25px);
    }
    50% {
        transform: translate(0, 0);
    }
    62.5% {
        transform: translate(-50px, -25px);
    }
    75% {
        transform: translate(-100px, 0);
    }
    87.5% {
        transform: translate(-50px, 25px);
    }
}
@media (min-width: 992px) {
    .fc-scroller-liquid-absolute {
        overflow: unset !important;
    }
}
@media (max-width: 991px) {
    #booking-form {
        margin-top: 32px;
    }
    .booking-room {
        padding: 10px;
    }
    .container {
        display: block;
    }
    #calendar {
        width: 100%;
    }
    .info {
        width: 100%;
    }
}
