.dod-orders-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Jost', sans-serif;
}

.dod-orders-wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.dod-orders-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #0055A5;
    border-bottom: 2px solid #ffd205;
    padding-bottom: 15px;
}

.dod-orders-list {
    display: grid;
    gap: 20px;
}

.dod-order-item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px;
    background: #f9f9f9;
    transition: box-shadow 0.3s ease;
}

.dod-order-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dod-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.dod-order-number {
    font-size: 18px;
    color: #0055A5;
}

.dod-order-status {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.dod-order-status.status-ok,
.dod-order-status.status-ordersaved {
    background: #00B894;
    color: #fff;
}

.dod-order-status.status-paymentcharged {
    background: #ffd205;
    color: #333;
}

.dod-order-status.status-processing {
    background: #0055A5;
    color: #fff;
}

.dod-order-details {
    display: grid;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.dod-order-details strong {
    color: #333;
    margin-right: 5px;
}

.dod-order-lines {
    margin-top: 10px;
}

.dod-order-lines ul {
    list-style: none;
    padding-left: 0;
    margin: 8px 0;
}

.dod-order-lines li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.dod-order-lines li:last-child {
    border-bottom: none;
}

.dod-order-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #0055A5;
    font-size: 18px;
    font-weight: 600;
    color: #0055A5;
}

/* Responsive */
@media (max-width: 768px) {
    .dod-orders-container {
        padding: 10px;
    }
    
    .dod-orders-wrapper {
        padding: 20px;
    }
    
    .dod-order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
