body {
    height: 100vh;
    align-items: center;
    background-color: rgb(29, 29, 29);
    overflow: hidden;
}

#canvas {
    width: 80%;
    height: 98.5vh;
}

#canvas-controls {
    height: 95%;
    display: flex;
}

#controls {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 350px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    padding: 15px;
    color: white;
    right: 10px;
    top: 10px;
    gap: 10px;
    background-color: rgb(32, 32, 32);
    border: 2px solid white;

    /* Disable highlighting */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.toggle-div:disabled, .radio-div:disabled {
    opacity: 0.2;
    filter: grayscale(100%);
}
.toggle-div:disabled + label, .radio-div:disabled + label {
    text-decoration: line-through;
    color: rgb(94, 94, 94);
}
.toggle-div:hover, .radio-div:hover {
    color: rgb(119, 119, 119);
}

.opacity-label {
    display: inline-block;
    width: 200px;
}

#remove-projectiles {
    margin-top: 10px;
    padding: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 17px;
    color: white;
    background-color: rgb(51, 51, 51);
    border: 2px solid white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.1s, transform 0.1s;
}

#remove-projectiles:hover {
    background-color: rgb(119, 119, 119);
    transform: scale(1.05);
}

#remove-projectiles:active {
    background-color: rgb(51, 51, 51);
    transform: scale(0.95);
}