.order-group {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.order-doc {
    font-size: 1.2rem;
    margin: 0;
    color: black;
}

.order-status {
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

.order-status.unpaid {
    background: #ffe0e0;
    color: #b30000;
}

.order-status.paid {
    background: #e0ffe5;
    color: #007a33;
}

.order-info,
.order-unsettled-info {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.order-info p {
    margin: 0.2rem 0;
}

.order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.order-table th,
.order-table td {
    border: 1px solid #ddd;
    padding: 0.6rem;
    text-align: left;
}

.order-table th {
    background: #f5f5f5;
}

.order-totals {
    text-align: right;
    font-size: 1rem;
    min-width: 100%;
    overflow-x: auto;
}

.order-totals p {
    margin: 0.3rem 0;
}

.order-totals .grand-total {
    font-size: 1.25rem;
    color: green;
}