body {
    margin: 0;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding-left: 3px;
}

h3, h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-left: 5px;
}

.boiledOrder p {
    margin-left: 4vw; 
    font-weight: bold; 
    font-family: Arial, Helvetica, sans-serif;
}

.lowItem {
    margin-top: -10px;
    display: flex;
    justify-content: space-between;
}

.page {
    margin-top: 2vh;
}

#restart {
    color: white;
    cursor: pointer;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    width: 60vw;
    margin-right: 10px;
    background-color: #A52A2A;
}

#addItem {
    color: white;
    cursor: pointer;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    width: 15vw;
    background-color: #A52A2A;
}

#refreshItems {
    color: white;
    cursor: pointer;
    border: none;
    padding: 10px 20px;
    font-size: 30px;
    margin-right: 10px;
    width: 15vw;
    background-color: #A52A2A;
}

.orderPreinputs {
    display: flex;
    justify-content: center;
    align-items: center;
}

.orderPreinputs p {
    margin-right: 2vw;
}

#bottom-buttons {
    position: fixed;
    bottom: 2vh;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.chapter-buttons {
    margin: 15px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: transparent;
    color: black;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 80vw;
    text-align: center;
}

#itemDropdown {
    border: none;
    border-radius: 5px;
    width: 35vw;
    height: 4vh;
    font-size: 13px;
    background-color: #A52A2A;
    color: white;
}

.modal-buttons {
    border: none;
    border-radius: 5px;
    width: 40%;
    margin: 5px;
    background-color: #A52A2A;
    color: white;
    padding: 8px;
    font-size: 15px;
}