.kitchen-orders-filter {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.kitchen-orders-filter select {
    min-width: 220px;
    padding: 13px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: #ffffff;
    font-size: 14px;
}

.kitchen-order-card {
    overflow-x: auto;
}

.kitchen-order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.kitchen-order-header h2 {
    margin-bottom: 8px;
}

.kitchen-order-header p {
    margin: 0;
    color: #64748b;
    font-weight: 600;
}

.kitchen-order-notes {
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 18px;
    color: #475569;
    font-weight: 600;
}

.central-kitchen-orders-page .optimo-table input {
    width: 120px;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
}

.kitchen-order-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.branch-request-status {
    display: inline-flex;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.branch-request-status.pending {
    background: #fef3c7;
    color: #92400e;
}

.branch-request-status.approved {
    background: #dbeafe;
    color: #1d4ed8;
}

.branch-request-status.rejected,
.branch-request-status.cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.branch-request-status.dispatched {
    background: #ede9fe;
    color: #5b21b6;
}

.branch-request-status.received {
    background: #dcfce7;
    color: #166534;
}

@media (max-width: 800px) {
    .kitchen-order-header {
        flex-direction: column;
    }

    .kitchen-orders-filter {
        display: grid;
        grid-template-columns: 1fr;
    }
}
.optimo-action {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
    text-decoration: none;
    margin-top: 5px;
}