﻿.room-container {
    max-height: 70vh;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.room-info {
    padding: 10px;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

    .room-info h4 {
        margin: 0;
        padding-bottom: 10px;
        color: #333;
        font-size: 18px;
    }

    .room-info label {
        display: block;
        margin-bottom: 0px;
        color: #666;
        padding-inline:15px;
    }

    .room-info input[type="number"] {
        width: 100%;
        padding: 8px;
        margin-top: 5px;
        margin-bottom: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-sizing: border-box;
    }

.Popup-buttons {
    display: block;
    width: 100%;
    padding: 10px 15px;
    background-color: #ff595d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    margin: 10px;
}

.update-button:hover {
    background-color: #45a049;
}


.remove-room-button {
    display: none; /* Hide all remove buttons by default */
}

.room-info:last-child .remove-room-button {
    display: inline-block; /* Only display the button on the last room */
}

select#adults {
    z-index: -1;
}

    select#adults option {
        display: none;
        z-index: -1;
    }
