body {
    font-family: 'Montserrat', "Comic Sans MS", sans-serif;
    background-color: cadetblue;
}

li {
    list-style: none;
}

#content {
    background-color: white;
    width: max-content;
    min-width: 100%;
}

ul#menu {
    display: flex;
    font-size: 2rem;
    justify-content: space-evenly;
    margin: 0;
    padding: 0;
}

ul#menu li {
    width: 100%;
    text-align: center;
    background-color: cadetblue;
    padding: 1rem;
}

ul#menu li a {
    color: white;
    text-decoration: none;
}

ul#menu li.current {
    background-color: white;
}

ul#menu li.current a {
    color: cadetblue;
}

form {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
}

form > div {
    flex: 1;
}

form#form-filter {
    display: block;
}

input[type=submit] {
    padding: 0.5rem 1rem;
    background-color: cadetblue;
    color: white;
    border: 1px solid white;
    font-size: 1rem;
    margin: 1rem;
    cursor: pointer;
}

table th {
    display: none;
}

td {
    border: 1px solid black;
    padding: 5px;
    height:30px;
    font-family: arial;
    font-size: 13px;
    white-space: nowrap;
}

.double-table {
    display: flex;
    justify-content: start;
}

.js-change-order-number {
    display: inline-block;
}

.js-change-order-number input {
 height: 2rem;
 margin: 0.5rem 0;
 padding: 0 10px;
 border: 1px solid cadetblue;
}
.js-change-order-number button {
    background-color: cadetblue;
    border: 1px solid cadetblue;
    color: white;
    height: 2rem;
}