.page-title {
    color: var(--light, #f8fafc);
    font-size: 2rem;
    margin-bottom: 30px;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 24px;
}

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

.order-number {
    color: var(--light, #f8fafc);
    font-weight: 700;
    font-size: 1.1rem;
}

.order-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-pending, .status-pending_payment {
    background: rgba(251, 191, 36, 0.2);
    color: #fcd34d;
}

.status-paid, .status-completed {
    background: rgba(74, 222, 128, 0.2);
    color: #86efac;
}

.status-cancelled {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.order-date {
    color: var(--gray, #64748b);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.order-total {
    color: var(--primary, #6366f1);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.order-detail {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
}

.order-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.order-items-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.order-items-table th,
.order-items-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
    color: var(--light, #f8fafc);
}

.order-items-table th {
    color: var(--gray, #64748b);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.order-totals {
    text-align: right;
    padding: 16px 0;
    border-top: 2px solid rgba(99, 102, 241, 0.2);
    color: var(--light, #f8fafc);
}

.total-final {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary, #6366f1);
    margin-top: 8px;
}
