/* ===== ORDERS PAGE ===== */
.orders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.orders-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.delivery-type {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 5px;
}

.delivery-type.local {
    background: #dbeafe;
    color: #1d4ed8;
}

.delivery-type.long-distance {
    background: #fef3c7;
    color: #92400e;
}

.payment-status {
    font-size: 12px;
    font-weight: 600;
}

.payment-status.paid {
    color: var(--success);
}

.payment-status.pending {
    color: var(--warning);
}

.payment-status.cod {
    color: var(--info);
}


@media (max-width: 768px) {
    .orders-filters {
        flex-direction: column;
    }

    .orders-filters .form-select {
        width: 100% !important;
        min-width: 100% !important;
    }

    .delivery-type,
    .payment-status {
        font-size: 10.5px;
    }
}
