* {
    box-sizing: border-box;
}

#scenes-container {
    position: absolute;
    top: 0px;
    right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 2;
    width: 200px;
    height: 100%;
    background: #616161;
    overflow: auto;
    gap: 16px;
    padding: 6px;
}

#scenes-container > div {
    width: 100%;
    height: auto;
    cursor: pointer;
    background-color: #171716;
    color: white;
    text-transform: uppercase;
    padding: 6px;
    text-align: center;
}

#scenes-container > div:hover {
    background-color: #2b2b2b;
}


#scenes-container-title {
    font-size: 22px;
    font-weight: bold;
    cursor: default !important;
    margin-bottom: 16px;
}

#scenes-container-title:hover {
    background-color: #4f4f4e !important;
}