html {
    overflow-y: scroll;
    margin: 1% 2.5%;
}

#canvas {
    max-height: 600px;
    max-width: 100%;
}

#canvasDiv {
    max-height: 600px;
    max-width: 100%;
}

#coord {
    color: black;
    font-size: 14px;
    /*height: 18px;*/
    position: absolute;
    background-color: lightgrey;
    border-radius: 3px;
    border-color: black;
    border-width: 2px;
    border-style: solid;
    padding: 3px;
    display: none;
    pointer-events: none;
    transform: translate(-50%,-100%);
    text-align: center;
}

#status {
    color: grey;
    font-size: 20px;
    height: 25px;
}

#xai {
    display: none;
    grid-template-columns: 1fr repeat(8, 2fr);
}
#xaiDisplay {
    display: none;
    position: absolute;
    top: 5%;
    left: 10%;
    width: 600px;
    background-color: white;
    border: solid black 2px;
    border-radius: 5px;
    padding: 5px;
}
#xaiImage {
    max-width: 100%;
    height: 600px;
}
#xaiImageDisplay {
    display: grid;
    grid-template-columns: 4fr 1fr;
}
#control {
    position: relative;
    top: 25%;
    text-align: center;
    display: grid;
    grid-template-rows: 1fr 1fr;
    row-gap: 5px;
    height: 10%;
}
#GIFform {
    display: none;
    position: absolute;
    top: 25%;
    left: 30%;
    width: 40%;
    background-color: white;
    border: none;
    border-style: ridge;
    border-radius: 5px;
    z-index: 9;
    text-align: center;
}
#GIFformOptions {
    display: grid;
    grid-template-columns: repeat(3,33.3%);
}
.GIFoptionTitle {
    text-align: center;
}
.GIFoption {
    width: 90%;
    margin: 5px 5px 5px 5px;
}

footer {
    margin-top: 2em;
    font-size: 12px;
    text-align: center;
}

.hide {
	visibility: hidden;
	height: 0px;
}

#cmapEditor {
    display: none;
    position: absolute;
    top: 10%;
    left: 10%;
    width: 200px;
    max-height: 600px;
    overflow-y: auto;
    background-color: white;
    border: solid black 2px;
    border-radius: 5px;
    padding: 5px;
    z-index: 10;
}