/* Page reset */
* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.header {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 10%;
    background-color: grey;
    padding: 10px;
    margin-bottom: 20px;
}

.header .headerChild {
    margin: 0;
}

body {
    margin: 0;
    padding: 20px;
    background: #f4f4f4;
}

/* Grid container */
.orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-auto-rows: var(--order-card-height, 320px);
    gap: 20px;
}

/* Single order card */
.order-card {
    background: #fff;
    border: 4px solid #000;
    height: var(--order-card-height, 320px);
    max-height: var(--order-card-height, 320px);
    display: flex;
    flex-direction: column;
}

/* Header section */
.order-header, .order-footer{
    padding: 10px;
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
}

.order-header {
    border-bottom: 4px solid #000;
}

.order-footer {
    border-top: 4px solid #000;
}
/* Body section */
.order-body {
    padding: 12px;
    flex: 1;
    overflow-y: hidden;
    line-height: 1.4;

}


.item {
    margin-bottom: 14px;
}

.item-name {
    font-weight: bold;
}

.item-comment {
    margin-left: 10px;
    font-size: 0.9em;
    color: #333;
}

.order-continued {
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
