:root {
    --extra-dark-green: rgb(4, 51, 14);
    --primary: #14731c;
}

body {
    margin: 0;
}

/* header {
    height: 1em;
} */

#page {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

#main-panel {
    flex: 1;
    display: flex;
    text-align: center;
    overflow: auto;
    justify-content: center;
}

#editor-container {
    position: relative;
    display: inline-block;
    top: 0;
    left: 0;
}

/* #editor-container {
    flex: 1;
    display: flex;
    text-align: center;
    overflow: auto;
    justify-content: center;
}

#wall-image-wrapper {
    position: relative;
    display: inline-block;
    top: 0;
    left: 0;
} */

img.wall-image {
    opacity: 0.5;
}

.wall-image {
    position: relative;
    top: 0;
    left: 0;
    height: 85vh;
}

#route-drawing {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#grade {
    position: absolute;
    margin-left: 1em;
    margin-top: 1em;
    width: 5em;
}

#grade>p {
    font-size: 3em;
    vertical-align: top;
    margin: 0;
    color: var(--primary);
    font-weight: bold;
}

.selected {
    stroke: var(--extra-dark-green);
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#overlay>#navigation-buttons {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* align-self: center; */
    margin-top: auto;
    margin-bottom: auto;
}

#overlay>#navigation-buttons>button {
    color: var(--primary);
}

#overlay>#overlay-buttons {
    height: auto;
    width: 100%;
    color: var(--primary);
    display: flex;
    justify-content: flex-end;
}

/*  scrollbar */
/* Let's get this party started */
::-webkit-scrollbar {
    width: 12px;
}
 
/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: var(--primary); 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
::-webkit-scrollbar-thumb:window-inactive {
	background: var(--primary); 
}
