body, html {
    font-family: Arial, sans-serif;
    font-size: 16px;
    height: 100%;
    margin: 0;
}

canvas {
    width: 100%;
    height: 80%;
}

.control-row {
    margin-top: 8px;
    display: block;
}
.display-row {
    margin-top: 5px;
    display: block;
}
/* Explicitly set some font sizes to avoid wonkiness. */
#viewCoords, #pointerCoords {
    font-size: 16px;
}

.popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.popup-content {
    background-color: #fefefe;
    margin: 30% auto; /* 30% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
