body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    font-style: normal;
}

h1 {
    margin: 20px 0px 2px 0px;
    text-align: center;
}

h4 {
    margin: 0px 0px 10px 0px;
}

input,
select,
label {
    cursor: pointer;
}

table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}

th,
td {
    border: #888 solid 1px;
}

.container {
    width: 80%;
    min-width: 400px;
    max-width: 600px;
    box-shadow: 1px 1px 4px #6666669e;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container div {
    width: 100%;
    margin: 20px 0;
    margin-top: 0px;
    display: inline-flex;
    justify-content: center;
}

.container label {
    font-size: 20px;
}

.container div input[type=text],
.container div input[type=password] {
    width: 60%;
    max-width: 300px;
    border-radius: 5px;
    border: 1px silver solid;
    cursor: text;
}

.containerTable {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.containerTable label {
    width: 100px;
    text-align: right;
}

.containerMain {
    width: 80%;
    max-width: 800px;
}

.navTable {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
}

.navTable h2 {
    width: 300px;
}

.navTable div {
    display: flex;
    flex-wrap: wrap;
}

.navTable button {
    height: 50px;
    margin: 2px 0px 2px 3px;
    padding: 7px 10px;
    border: 1.5px solid transparent;
    border-radius: 5px;
    background-color: #f1f1f1;
    cursor: pointer;
}

.navTable button:hover {
    border: 1.5px solid #d1a900;
    background-color: #fff;
}

.navTable button p,
.orderInfo p {
    margin: 0;
}

.orderInfo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.orderInfoL {
    width: 40%;
    min-width: 200px;
}

.orderInfoR {
    width: 55%;
    padding: 15px;
    box-shadow: 1px 1px 4px #6666669e;
    border-radius: 15px;
}

.orderInfoL label {
    width: 50px;
}

.orderInfoL input,
.orderInfoL select {
    height: 25px;
    width: calc(90% - 47px);
    max-width: 300px;
    border-radius: 5px;
    border: 1px silver solid;
}

.orderInfoL input[type=date] {
    width: 90%;
}

div.cross {
    cursor: pointer;
    justify-content: flex-end;
    position: absolute;
    top: 15px;
    right: 0px;
}

#submitBT {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#submitBT input[type=submit],
#submitBT button {
    min-width: 100px;
    padding: 7px 10px;
    background-color: #d1a900;
    border: 0px;
    border-radius: 5px;
}

#submitBT input[type=submit]:hover,
#submitBT button:hover {
    cursor: pointer;
    background-color: #fad530;
    box-shadow: inset 2px 2px 2px #d1a900;
}

@media screen and (max-width: 360px) {
    .container.min-w-mobile {
        min-width: 200px;
    }
}