
html, body {
    width:  100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

body {
	margin: 0;
	background: linear-gradient(45deg, #110435, #00671f);
}

#gameCanvas:hover {
    cursor: crosshair;
}

#mapEditorWindow {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.434);
    font-size: large;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    border-style: double;
    border-radius: 10px;
    padding: 10px;
    margin: 3px;
}

#mapEditorWindow button {
    background-color: rgba(163, 163, 163, 0.292);
    border-style: inset;
    border-color: rgb(255, 255, 255);
    border-radius: 5px;
    cursor: pointer;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: medium;
}

#mapEditorMapExportName {
    width: 70%;
    background-color: rgba(73, 73, 73, 0.292);
    border-style: inset;
    border-color: rgb(255, 255, 255);
    border-radius: 5px;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: medium;
}

#mapEditorHitboxCheckboxes label {
    font-weight: lighter;
    color: white;
}

#mapEditorGameObjectDropList {
    list-style-type: none;
    max-height: 250px;
    overflow: hidden;
    overflow-y: scroll;
}

#mapEditorGameObjectDropList button {
    background-color: rgba(163, 163, 163, 0.292);
    border-style: inset;
    border-color: rgb(255, 255, 255);
    border-radius: 5px;
    margin-bottom: 5px;
    width: 90%;
    cursor: pointer;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: medium;
}

#mapEditorGameObjectDropList::-webkit-scrollbar {
    width: 15px;
}

#mapEditorGameObjectDropList::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.405); 
    border-radius: 10px;
}

#mapEditorGameObjectDropList::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.765); 
}

#infoFlexContainer {
    display: flex;
}

#mapEditorWindow h1 {
    font-weight: bold;
    font-size: 25px;
    color: rgb(255, 255, 255);
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 5px;
    border-style: groove;
    background: linear-gradient(30deg, rgba(255,0,0,1) 0%, rgba(255,154,0,1) 50%, rgba(208,222,33,1) 100%);
}

#mapEditorWindow h2 {
    font-weight: bold;
    font-size: 20px;
    color: white;
    margin-top: 5px;
    margin-bottom: 5px;
}

#mapEditorWindow h3 {
    font-weight: bold;
    font-size: 18px;
    color: white;
    margin: 0;
}

#mapEditorWindow p {
    font-size: 18px;
    color: white;
    margin: 0;
}

#mapEditorWindow li {
    color: white;
}

#mapEditorKeyInfoPressed {
    margin: 0px;
}

.mapEditorWindowDiv {
    border-style: groove;
    padding: 5px;
    margin: 2px;
    border-radius: 5px;
    background-color: #3d3d3d8f;
}
