* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.playground {
    width: 100%;
    height: 100%;
    position: relative;
}
.playground canvas{
    cursor: grab;
}
.playground__room {
    background-image: url(/images/room_1.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;

    pointer-events: none;
}
.textures {
    position: fixed;
    top: 0;
    width: max-content;
    display: flex;
    flex-direction: column;
    column-gap: 10px;
    row-gap: 5px;
    z-index: 2;
    padding: 15px;
    background-color: #2a2a2a;
}
.texture {
    width: 100px;
    height: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.texture:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.rooms {
    position: fixed;
    top: 0;
    right: 0;
    width: max-content;
    display: flex;
    flex-direction: column;
    column-gap: 10px;
    row-gap: 5px;
    z-index: 2;
    padding: 15px;
    background-color: #2a2a2a;
}
.room_item {
    width: 100px;
    height: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.room_item:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.slidecontainer {
    width: 100%; /* Width of the outside container */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    z-index: 2;
}

.slidecontainer h5 {
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 5px;
    padding: 0 5%;
}

/* The slider itself */
.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 25px;
    background: #2a2a2a;
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
}

/* Mouse-over effects */
.slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #7b00ff; /* Green background */
    cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #04aa6d; /* Green background */
    cursor: pointer; /* Cursor on hover */
}
