/* ===============================
   CALENDAR LAYOUT
================================ */

#calendar {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    border: 1px solid #ccc;
    font-family: Arial, sans-serif;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0b2c4d;
    color: #fff;
    padding: 10px;
}

.calendar-header button {
    background: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day-name{
    border: 1px solid #ddd;
    padding: 6px;
    background: #f2f2f2;
    font-weight: bold;
    text-align: center;
}

.calendar-day{
    border:1px solid #ddd;
    height:80px;
    position:relative;
    cursor:pointer;
    padding:2px 4px;
    box-sizing:border-box;
}


.calendar-day:hover {
    background: #eef6ff;
}

.calendar-day.today {
    background: #d9ebff;
    font-size: 2.3rem;
    font-weight: 800;
    color: #0c13ed;

}


.calendar-day.has-booking {
    background-color: #f3e6d8; /* light brown */
}


/* ===============================
   BOOKING DETAILS
================================ */

#bookingDetails {
    max-width: 900px;
    margin: 30px auto;
    border-top: 2px solid #0b2c4d;
    padding-top: 15px;
}

.booking-item {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.booking-item strong {
    color: #0b2c4d;
}

.btn {
    margin-right: 5px;
}


/* Booked days */
.calendar-day.has-booking {
    background-color: #f3e6d8; /* light brown */
}

/* Selected day */
.calendar-day.selected-day {
    background-color: #d1e7dd !important; /* light green */
    border: 2px solid #0f5132;
}



/* ===============================
   BOOKING TAGS
================================ */


/* spacing between tags */
.room-tags span{
    margin-right:4px;
    font-weight:600;
}

/* color styles for room types */

.tag-lab1{
    color:#1e6bd6;
}

.tag-lab2{
    color:#1a9b55;
}

.tag-bvc{
    color:#d46a1a;
}

.tag-svc{
    color:#8e3bb8;
}

.room-tags{
    position:absolute;
    top:1px;
    left:4px;
    right:4px;
    font-size:11px;
    line-height:1.1;
}

/* day number bottom-middle */
.day-number{
    position:absolute;
    bottom:2px;
    left:50%;
    transform:translateX(-50%);
    font-weight:700;
    font-size:1.6rem;
}


.room-tags span{
    margin-right:4px;
    font-weight:600;
}

.tag-lab1{ color:#1e6bd6; }
.tag-lab2{ color:#1a9b55; }
.tag-bvc{ color:#d46a1a; }
.tag-svc{ color:#8e3bb8; }


.Lab-1 strong{color:#1e6bd6;}

.Lab-2 strong{color:#1a9b55;}

.BigVCRoom strong{color:#d46a1a;}

.SmallVCRoom strong{color:#8e3bb8;}