*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    line-height: 1;
}

body{
    font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    background-color: #eceff1;
}

input:not([type]),
input[type="text"],
input[type="number"],
input[type="date"],
input[type="time"]{
    height: 30px;
}

textarea{
    resize:none;
}

input:not([type]),
input[type="text"],
input[type="number"],
input[type="date"],
input[type="time"],
textarea{
    padding: 5px;
    width: 100%;
    border: 1px solid #aaa;
    border-radius: 5px;
    box-shadow: none;
    outline: none;
}

input:not([type="radio"]):focus,
textarea:focus{
    border-color: #3b5459;
    /* outline: 1px solid #3b5459; */
}

input:disabled,
textarea:disabled{
    border: 1px solid #eee;
}

input:read-only,
textarea:read-only{
    background-color: #eee;
}

label {
    display: block;
    margin-bottom: 5px;
}

input + label{
    display: inline;
    margin-bottom: 0;
}

input:disabled + label{
    color: #aaa;
}

td, th{
    padding: 5px;
    text-align: center;
}

button{
    display: block;
    padding: 6px 10px 4px 10px;
    min-height: 30px;
    min-width: 30px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
    background-color: #3b5459;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
}

button[disabled]{
    background-color: #3b545977;
}

#page{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.box{
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
}

.money-input{
    text-align: right;
}

.menu-item{
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}