/*********************
Orders
********************/

.tableHeader,
.tableRow {
    grid-template-columns: 12% 13% 25% 32% 18%;
}

/*********************
Order Modal
********************/

.choices {
    margin-bottom: 0;
}

#orderModalStatus {
    font-weight: bold;
}

#orderModalImages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    margin-top: 20px;
}

#orderModalImages>img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

#orderModalSend {
    text-align: center;
    display: none;
}

#orderModalSend.active {
    display: block;
}

/*********************
QR Code
********************/

#qrCode {
    display: flex;
    justify-content: center;
}

#qrCode>img {
    max-width: 100%;
}