html, body {
    width:  100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

#editor {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.434);
    font-size: large;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    border-style: double;
    border-radius: 10px;
    padding: 10px;
    margin: 3px;
}

.standardButton {
    background-color: rgba(212, 212, 212, 0.299);
    cursor: pointer;
}

.standardButton:hover {
    background-color: rgba(212, 212, 212, 0.521);
}

.standardButton:active {
    background-color: rgba(212, 212, 212, 0.176);
}

.objectListButton {
    background-color: rgba(63, 63, 63, 0.292);
    border-style: dashed;
    border-color: black;
    margin-bottom: 5px;
    width: 90%;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    font-size: medium;
    font-weight: bold;
}

.objectListButton:hover {
    background-color: rgba(63, 63, 63, 0.544);
    border-style: solid;
}

.objectListButton:active{
    background-color: rgba(63, 63, 63, 0.168);
}

#gameObjectsList {
    height: 250px;
    width: 300px;
    overflow: hidden;
    overflow-y: scroll;
}

#gameObjectsList::-webkit-scrollbar {
    width: 15px;
}

#gameObjectsList::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.405); 
    border-radius: 10px;
}

#gameObjectsList::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.765); 
}
