﻿body {
    font-family: 'Hotel One', sans-serif;
}

/* Common button styles with rounded corners */
.btn-booking {
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    font-family: sans-serif;
    font-weight: bold;
    cursor: grabbing;
    height: 50px;
    width: 75px;
    border-radius: 12px;
    transition: all 0.3s ease; /* Smooth hover effect */
}

/* Color variations */
.btn-booking-green {
    background-color: #4CAF50;
    color: white;
}

.btn-booking-blue {
    background-color: #1E90FF;
    color: white;
}

.btn-booking-red {
    background-color: #FF4136;
    color: white;
}

.btn-booking-purple {
    background-color: purple !important;
    color: white !important;
}

.btn-booking-Orange {
    background-color: orange !important;
    color: white !important;
}

/* Optional: Hover effect */
.btn-booking:hover {
    opacity: 0.8;
}

.btn-room {
    background-color: lightblue;
    color: red;
    border: none;
    text-align: center;
    text-decoration: none;
    display: block; /* ensures it fills its grid cell */
    font-size: 12px;
    font-family: sans-serif;
    font-weight: bold;
    cursor: pointer; 
    height: 75px;
    width: 100%; 
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .btn-room:hover {
        background-color: deepskyblue;
        color: white;
        transform: scale(0.5); /* subtle zoom effect */
    }

.col-1-10 {
    flex: 0 0 10%; /* each column is 10% wide */
    max-width: 10%;
}
.col-1-8 {
    flex: 0 0 12.5%; /* 100% / 8 = 12.5% */
    max-width: 12.5%;
}

/* InHouse Color */
.InHouse-color {
    background-color: lightblue !important;
    color: darkslateblue !important;
}

/* Out of Order */
.OutOfOrder-color {
    background-color: steelblue;
    color: white;
}

/* Out of Service */
.OutOfService-color {
    background-color: #b22222; /* Firebrick */
    color: white;
}

/* Reserved */
.Reserved-color {
    background-color: palevioletred;
    color: white;
}

/* Occupied */
.Occupied-color {
    background-color: lightseagreen;
    color: darkgreen;
}

/* Dirty */
.Dirty-color {
    background-color: lightblue;
    color: darkblue;
}

/* Empty */
.Empty-color {
    background-color: yellow;
    color: black;
}

/* Header */
.Header-color {
    background-color: lightsalmon;
    color: black;
}

/* Optional padding for readability */
.sidebar-stats-item {
    padding: 0.5rem 1rem;
    margin-bottom: 0.25rem;
    border-radius: 0.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.small-text {
    font-size: 10px !important;
}

.section-left {
    border: 2px solid #007bff; /* Blue */
    border-radius: 5px;
    padding: 10px;
}

.section-middle {
    border: 2px solid #28a745; /* Green */
    border-radius: 5px;
    padding: 10px;
}

.section-right {
    border: 2px solid #fd7e14; /* Orange */
    border-radius: 5px;
    padding: 10px;
}

.section-title-yellow {
    background: yellow;
    text-align: center;
    padding: 6px 0;
    border-radius: 4px;
}

.section-title-lightgreen {
    background: lightgreen;
    text-align: center;
    padding: 6px 0;
    border-radius: 4px;
}
