.btn-room{
    transition: transform ease 0.2s;
    /*transform-origin: center;*/
    /*transform-box: fill-box; !* Ensures the scaling is done relative to the bounding box *!*/
    background-color: #00679b;
    border: 1px solid #00496c;
    border-radius: 6px;
    color: white;
    font-weight: bold;

}
.btn-room:hover {
    cursor: pointer;
    transform: scale(1.05);
    background-color: #0086ce;
    color: white;
}

.btn-room-danger{
    transition: transform ease 0.2s;
    /*transform-origin: center;*/
    /*transform-box: fill-box; !* Ensures the scaling is done relative to the bounding box *!*/
    background-color: #904a4a;
    border: 1px solid #703838;
    border-radius: 6px;
    color: white;
    font-weight: bold;

}
.btn-room-danger:hover {
    cursor: pointer;
    transform: scale(1.05);
    background-color: #a85858;
    color: white;
}

.sxetiko{
    position: relative;
}

.room-right{
    padding: 0.5rem;
    background-color: rgba(239, 220, 128, 0.33);
    border-radius: 6px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    flex-grow: 1; /* This allows the red div to take up the remaining space */
    min-width: 10%; /* Ensures the red div is at least 15% of the container's width */
}


.room-section{
    background-color: ghostwhite;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    padding: 0.25rem;

    display: flex;
    align-items: stretch; /* Ensures children stretch to container's height */
    gap: 0.25rem;
    /*max-height: 95%;*/

    height: 95%; /* Make sure the section takes the full height of the iframe */
    box-sizing: border-box; /* Include padding and borders in the element's total width and height */
}

.room-section > img{
    max-width: 85%; /* The image can take up to 85% of the container width */
    height: auto; /* The image will always be as tall as the container */
    object-fit: contain; /* Ensures the image will not overflow its container */

    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, .125);
}

.selectable-img{
    height: 5rem;
    max-width: 5rem;
}

.equipment-btn:checked + .btn{
    background-color: rgba(245, 238, 213, 0.76) !important;
    /*border-color: var(--bs-card-border-color);*/
    border-color: transparent;
    /*box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;*/
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.equipment-btn:hover + .btn{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}