<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

/* Room type title */
.roomtypename {
    display: block;
    text-align: center;
    margin: 20px auto;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* Room image styling */
.room-type-pic {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    max-width: 1000px;
}

.image1 {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.roomPrice {
    margin-top: 20px;
    font-weight: bold;
}

#RoomPrice{
    color: red;
}
.facility li {
    list-style-type: disc;
    margin-left: 20px;
}


/* Table cell alignment */
.searchstyle {
    padding: 8px;
    text-align: center;
    font-size: 14px;
}

/* Guest quantity input */
.guestbox {
    width: 60px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.bookbutton-wrapper {
    text-align: center;
    margin-top: 20px;
}

/* Booking button */
.bookbutton {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .bookbutton:hover {
        background-color: #0056b3;
    }

/* Wrap long text */
.RoomDescription {
   white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    text-align: justify;
    line-height: 1.6;
}

/* Calendar wrapper for positioning */
.calendar-wrapper {
    position: relative;
    display: inline-block;
}

/* Calendar appearance */
.calendar-control {
    position: absolute;
    top: 40px; 
    left: 0;
    z-index: 1000;
    background-color: white;
    border: 1px solid #ccc;
    font-size: 12px;
    width: 180px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    visibility: hidden;
}

    .calendar-control.visible {
        visibility: visible;
    }

#Calendar {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.room-description-container,
.booking-container {
    flex: 1 1 48%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    min-width: 280px;
    margin:20px;
}

.booking-table-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .room-description-container,
    .booking-container {
        flex: 1 1 100%;
    }
}

.auto-style35 {
    width: 100%;
}
</pre></body></html>