.orders-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.orders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.orders-header h2 {
    margin: 0;
    color: #333;
}

.filters {
    width: 200px;
}

.order-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: transform 0.2s;
    cursor: pointer;
}

.order-card:hover {
    transform: translateY(-2px);
}

.order-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-id {
    font-weight: 600;
    color: #333;
}

.order-date {
    color: #666;
    font-size: 0.9em;
}

.order-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 500;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-processing {
    background: #cce5ff;
    color: #004085;
}

.status-shipped {
    background: #d4edda;
    color: #155724;
}

.status-delivered {
    background: #d1e7dd;
    color: #0f5132;
}

.order-items {
    padding: 15px 20px;
}

.order-total {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    text-align: right;
    font-weight: 600;
}

@media (max-width: 768px) {
    .orders-header {
        flex-direction: column;
        gap: 15px;
    }

    .filters {
        width: 100%;
    }
}