#form {
    background-color: #fff;
    color: #000;
    width: 200px;
    padding: 10px;
    position: fixed;
    top: 10px;
    left: 10px;
}

#form > div {
    margin-bottom: 8px;
}

#form label {
    display: block;
}

#form input, #form select {
    width: 100%;
}

#form > button {
    cursor: pointer;
    width: 100%;
    margin-top: 5px;
    padding: 2px 0;
}

tbody tr {
    cursor: pointer;
    transition: all linear 100ms;
}

tbody tr:hover {
    background-color: maroon;
}

select:focus {
    outline: none;
}

@media screen and (max-width: 855px) {
    #form {
        display: none;
    }
}
