body {
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.87);
    background-color: #000000; 
    font-family: Arial, Helvetica, sans-serif;
}

#app {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
hr {
    height: 1px;
    background-color: #97866e;
    border: none;
}
.spritePosition {
    margin: 10px 0 0 10px;
    font-size: 0.8em;
}

.inputs {
    background-color: #54463c;
    color: #c1b39d;
    border: none;
    border-radius: 4px;
    padding: 4px;
    margin: 2px;
}

input:focus {
    outline: none;
    box-shadow: none;
}

.button {
    outline: none;
    background-color: #54463c;
    color: #c1b39d;
    border: none;
    border-radius: 4px;
    padding: 4px;
    margin: 2px;
}

.button-active {
    outline: none;
    background-color: #2f221a;
    color: #c1b39d;
    border: none;
    border-radius: 4px;
    padding: 4px;
    margin: 2px;
}
.button:focus {
    outline: none;
    box-shadow: none;
}



.button:hover {
    transform: scale(1.05);
    background-color: #5e4f43;
}

.button:active {
    background-color: #45322b;
    color: #c1b39d;
}

.button:disabled {
    cursor: not-allowed;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.3);
}


.scrollPanel {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #6d5a4d #3c2c27; /* Firefox */

    /* WebKit-based browsers */
}

.scrollPanel::-webkit-scrollbar {
    width: 8px;
}

.scrollPanel::-webkit-scrollbar-track {
    background: #3c2c27;
    border-radius: 4px;
}

.scrollPanel::-webkit-scrollbar-thumb {
    background-color: #6d5a4d;
    border-radius: 4px;
    border: 2px solid #3c2c27;
}


#nw-move-bar {
    position: fixed;
    background-color: transparent;
    left: 0px;
    top: 0px;
    height: 25px;
    width: 25px;
}

#n-move-bar {

    position: fixed;
    background-color: transparent;
    left: 25px;
    top: 0px;
    right: 25px;
    height: 25px;
}

#ne-move-bar {

    position: fixed;
    background-color: transparent;
    right: 0px;
    top: 0px;
    height: 25px;
    width: 25px;
}


#e-move-bar {

    position: fixed;
    background-color: transparent;
    top: 25px;
    right: 5px;
    bottom: 25px;
    width: 25px;


}


#se-move-bar {

    position: fixed;
    background-color: transparent;
    bottom: 5px;
    right: 5px;
    height: 25px;
    width: 25px;

}

#s-move-bar {

    position: fixed;
    background-color: transparent;
    left: 25px;
    bottom: 5px;
    right: 25px;
    height: 25px;

}

#sw-move-bar {

    position: fixed;
    background-color: transparent;
    left: 0px;
    bottom: 0px;
    height: 25px;
    width: 25px;
}

#w-move-bar {

    position: fixed;
    background-color: transparent;
    top: 25px;
    left: 0px;
    bottom: 25px;
    width: 25px;
}

