/* ===== meus_pedidos.css ===== */
.meus-pedidos-topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.meus-pedidos-topo h2 {
  margin: 0;
  text-align: left;
}

.btn-voltar-cardapio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  white-space: nowrap;
}

.lista-pedidos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pedido-card {
  display: block;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  text-decoration: none;
  color: inherit;
}

.pedido-card__topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.pedido-card__status {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  white-space: nowrap;
}

.pedido-card__status.status-1,
.pedido-card__status.status-2 {
  background: #fff7f3;
  color: #fa4d2b;
}

.pedido-card__status.status-3 {
  background: #ecfdf5;
  color: #15803d;
}

.pedido-card__status.status--1 {
  background: #fef2f2;
  color: #b91c1c;
}

.pedido-card__info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #64748b;
}
