body {
    overflow: hidden;
    background-color: #222;
}

.CodeMirror-lines {
    width: 100%;
    height: 100%;
}

button, select {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    border: 1px solid transparent;
    padding: 5px;
    -webkit-appearance: none;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.6);
}

button:hover, input:hover, select:hover {
    border: 1px solid rgba(255, 255, 255, 0.6);
}

button:hover, select:hover {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
}

button:active {
    background-color: rgba(255, 255, 255, 0.9);
    color: rgba(0, 0, 0, 0.6);
}

input {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    border: 1px solid transparent;
    padding: 5px;
    color: rgba(255, 255, 255, 0.6);
    box-shadow: inset 0px 0px 0px rgba(255, 255, 255, 0.9);
}

input:hover {
    cursor: text;
}

input:focus {
    color: rgba(255, 255, 255, 0.9);
}

#my-canvas {
    position: absolute;
    top: 0px;
    left:0px;
    background-color: inherit;
}

#panel {
    position: absolute;
    top: 100px;
    left:100px;
    width: 650px;
    border-radius: 5px;
    padding: 15px;
    cursor: move;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 2px rgba(255, 255, 255, 0.5);
    z-index: 999;
}
#stats {
    z-index: 1;
}

#panel .controls {
    padding: 5px 0px;
}

#panel .song-controls {
    float:right;
}

#btn-fps-toggle {
    position: relative;
    float: right;
    margin-top: 10px;
    margin-right: 10px;
}

#preset-code .CodeMirror {
    /* Set height, width, borders, and global font properties here */
    font-family: monospace;
    height: 300px;
    background-color: transparent;
}
