body {
    margin: 0;
}

.container {
    display: flex;
    height: 100vh;
}

.floorPlanContainer {
    width: 85%;
    overflow: hidden;
    position: relative;
}

#floorPlan {
    display: grid;
    grid-template-columns: repeat(10, 50px);
    grid-template-rows: repeat(10, 50px);
    gap: 5px;
    margin-top: 10px;
    height: 100%;
}

.furniture {
    width: 100%;
    height: 100%;
    background-color: lightblue;
    border: 1px solid #000;
    position: relative;
    cursor: pointer;
}

#roomBox {
    background-color: #e0e0e0; /* Light gray color for the room box */
}

#planName {
    margin-top: 10px;
    margin-bottom: 10px;
}

.objectsContainer {
    width: 15%;
    background-color: #f0f0f0; /* Light background color for the objects container */
    padding: 10px;
}

.object {
    cursor: pointer;
    margin-bottom: 10px;
}
