body {
    font-family: sans-serif;
    margin: 0;
}
.main-content {
    margin-left: 250px;
    padding: 20px;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.header h1 {
    font-size: 1.5em;
    margin: 0;
}
.status-tag {
    background-color: #d4edda;
    color: #155724;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
}
.order-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    background-color: #fafafa;
}
.order-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}
.item-details {
    flex-grow: 1;
}
.item-details h2 {
    font-size: 1.2em;
    margin: 0 0 5px 0;
}
.item-details p {
    font-size: 0.9em;
    color: #555;
    margin: 0;
}
.item-price {
    font-size: 1.2em;
    font-weight: bold;
}
.summary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.summary-row.total {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}
.summary-row .label {
    color: #777;
}
