@charset "UTF-8";
:root {
  /* ==========================================================================
     BRAND COLORS (CORES EXTRAÍDAS DA LOGO)
     ========================================================================== */
  --od-primary: #EBB04D; /* O Dourado Solar da logo */
  --od-primary-hover: #D9943B; /* Tom mais profundo para interação */
  --od-primary-light: rgba(235, 176, 77, 0.15);
  --od-secondary: #6A8E7F; /* Verde Oceano Calmo (combina com o tema "Orla") */
  --od-secondary-hover: #567568;
  --od-secondary-light: rgba(106, 142, 127, 0.1);
  --od-dark: #2D2926; /* O Grafite das ondas e do texto da logo */
  /* ==========================================================================
     SURFACES & BACKGROUNDS (O BEGE DA LOGO)
     ========================================================================== */
  --od-bg-page: #FDF8F0; /* Fundo areia claríssimo (traz calor à interface) */
  --od-bg-sand: #F5E9D6; /* O bege exato do fundo da logo para seções */
  --od-bg-card: #ffffff;
  --od-bg-auth-card: rgba(253, 248, 240, 0.95);
  --od-bg-input: #ffffff;
  --od-border: #E8E2D9; /* Borda areia suave */
  /* ==========================================================================
     TEXT (GRAFITE PROFISSIONAL)
     ========================================================================== */
  --od-text: #2D2926; /* Texto principal no tom das ondas da logo */
  --od-muted: #8E8A86; /* Cinza amarronzado para subtextos */
  /* ==========================================================================
     KPI TILES (DASHBOARD HARMONIZADO)
     ========================================================================== */
  --od-kpi-primary: #EBB04D;
  --od-kpi-secondary: #6A8E7F;
  --od-kpi-sand: #F5E9D6; /* Fundo areia para KPI neutro */
  --od-kpi-card: #FFFFFF;
  /* ==========================================================================
     STATUS & FEEDBACK (TONS TERROSOS E NATURAIS)
     ========================================================================== */
  --od-success: #6A8E7F; /* Verde natural em vez de neon */
  --od-warning: #EBB04D;
  --od-danger: #C25E5E; /* Vermelho queimado (mais sofisticado) */
  --od-info: #6A8E7F;
  /* ==========================================================================
     RADIUS / SIZES (MANTIDOS CONFORME SEU PADRÃO)
     ========================================================================== */
  --od-radius-sm: 8px;
  --od-radius-lg: 12px;
  --od-radius-xl: 16px;
  --od-radius-pill: 999px;
  --od-input-h: 48px;
  /* ==========================================================================
     SHADOWS & FOCUS (SOMBRAS ORGÂNICAS)
     ========================================================================== */
  --od-shadow-card: 0 10px 30px rgba(45, 41, 38, 0.05); /* Sombra baseada no tom Dark */
  --od-shadow-btn: 0 8px 20px rgba(235, 176, 77, 0.3); /* Sombra baseada no tom Solar */
  --od-focus: rgba(235, 176, 77, 0.25);
}

html, body {
  height: 100%;
}

body {
  /* protótipo usa Poppins */
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--od-text);
}

/* opcional: remover sublinhado padrão e manter comportamento */
a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Container mais “app” */
.od-container {
  max-width: 520px; /* mobile-first */
  margin: 0 auto;
  padding: 14px 14px 96px; /* espaço do bottom nav */
}

/* Helper: header de tela */
.od-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 12px 0 10px;
}

.od-screen-header h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 30px;
}

/* Topbar */
.od-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 247, 247, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.od-topbar-inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.od-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.od-brand .logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #0B2B2E;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
}

.od-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  position: relative;
}

.od-icon-btn:hover {
  background: rgba(17, 24, 39, 0.06);
}

.od-badge-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--od-primary);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 6px;
  line-height: 1.2;
}

/* Bottom nav */
.od-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.od-bottom-inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 10px 12px;
  display: flex;
  justify-content: space-around;
  gap: 8px;
}

.od-nav-item {
  text-decoration: none;
  color: #6b7280;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 72px;
}

.od-nav-item i {
  font-size: 22px;
}

.od-nav-item.active {
  color: var(--od-primary);
}

/* Lista atividade */
.od-activity {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 14px;
}

.od-activity + .od-activity {
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.od-activity .icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(0, 183, 194, 0.18);
  color: var(--od-secondary);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex: 0 0 auto;
}

.od-activity .title {
  font-weight: 900;
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.od-activity .desc {
  margin: 0;
  color: var(--od-muted);
  font-weight: 600;
}

.od-activity .time {
  margin-left: auto;
  color: var(--od-muted);
  font-weight: 700;
  white-space: nowrap;
}

/* Badges status */
.od-pill {
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.od-pill.orange {
  background: rgba(255, 122, 41, 0.18);
  color: #cc4c00;
}

.od-pill.cyan {
  background: rgba(0, 183, 194, 0.18);
  color: #067a82;
}

.od-pill.gray {
  background: rgba(107, 114, 128, 0.18);
  color: #374151;
}

/* Floating action button */
.od-fab {
  position: fixed;
  right: 18px;
  bottom: 86px; /* acima do bottom nav */
  z-index: 31;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 0;
  background: var(--od-primary);
  color: #fff;
  box-shadow: 0 14px 35px rgba(255, 122, 41, 0.4);
  display: grid;
  place-items: center;
  font-size: 34px;
}

.od-fab:hover {
  background: #ff6a12;
}

/* Dashboard (painel) — inspirado no protótipo Tailwind */
.od-dashboard {
  /* só pra garantir consistência */
}

.od-h1 {
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: 20px;
}

.od-subtitle {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--od-muted);
}

/* KPI cards */
.od-kpi {
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background: #fff;
  height: 100%;
}

.od-kpi__label {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 122, 50, 0.8);
}

.od-kpi__label--muted {
  color: var(--od-muted);
}

.od-kpi__value {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--od-text);
}

/* variações (equivalentes ao protótipo: primary/10, secondary/10, sand/50) */
.od-kpi--primary {
  background: rgba(255, 122, 50, 0.1);
  border-color: rgba(255, 122, 50, 0.2);
}

.od-kpi--primary .od-kpi__label {
  color: rgba(255, 122, 50, 0.85);
}

.od-kpi--secondary {
  background: rgba(0, 181, 198, 0.1);
  border-color: rgba(0, 181, 198, 0.2);
}

.od-kpi--secondary .od-kpi__label {
  color: rgba(0, 181, 198, 0.95);
}

.od-kpi--sand {
  background: rgba(244, 227, 195, 0.5);
  border-color: rgba(244, 227, 195, 0.6);
}

.od-kpi--sand .od-kpi__label {
  color: rgba(146, 64, 14, 0.7);
} /* amber-ish */
.od-kpi--card {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.06);
}

/* Card padrão (Atividade, etc.) */
.od-card {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.od-card__body {
  padding: 16px;
}

.od-card__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--od-text);
}

/* Atividade recente (linha) */
.od-activity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.od-activity + .od-activity {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.od-activity__icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 181, 198, 0.1);
  color: rgb(0, 181, 198);
  flex: 0 0 auto;
  font-size: 20px;
}

.od-activity__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.od-activity__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--od-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.od-activity__desc {
  font-size: 13px;
  color: var(--od-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.od-activity__time {
  margin-left: auto;
  font-size: 13px;
  color: var(--od-muted);
  white-space: nowrap;
}

/* Botões de Relatório Estilizados */
.od-report-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 20px 10px;
  border-radius: 20px; /* Bordas mais arredondadas para ser "amigável" */
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.od-report-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background: #fafafa;
}

/* Círculo do Ícone */
.od-report-btn__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

/* Cores Diferenciadas */
.od-report-btn__icon.is-daily {
  background: rgba(255, 122, 41, 0.15); /* Laranja da sua marca suave */
  color: #FF7A29;
}

.od-report-btn__icon.is-general {
  background: rgba(0, 183, 194, 0.15); /* Turquesa suave */
  color: #00B7C2;
}

/* Texto */
.od-report-btn__label {
  font-size: 0.85rem;
  font-weight: 800;
  color: #4b5563;
  text-align: center;
}

/* Page: Mesas (Panel) */
.od-page-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

/* grid 2 colunas igual protótipo */
.od-tables-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* card clicável */
.od-table-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  min-height: 140px;
  max-height: 140px;
}

.od-table-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

/* “barrinha” do topo */
.od-table-bar {
  height: 6px;
  width: 100%;
}

/* conteúdo */
.od-table-body {
  padding: 16px;
}

.od-table-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--od-text, #1d1d1f);
}

.od-table-status {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 700;
}

/* meta (apenas quando aberta) */
.od-table-meta {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
}

.od-table-meta p {
  margin: 0;
  line-height: 1.35;
}

/* cores por status (igual protótipo) */
.od-table-card.is-free .od-table-bar {
  background: var(--od-secondary, #00B7C2);
}
.od-table-card.is-free .od-table-status {
  color: var(--od-secondary, #00B7C2);
}

.od-table-card.is-open .od-table-bar {
  background: var(--od-primary, #FF7A29);
}
.od-table-card.is-open .od-table-status {
  color: var(--od-primary, #FF7A29);
}

.od-table-card.is-closed .od-table-bar {
  background: #d1d5db;
}
.od-table-card.is-closed .od-table-status {
  color: #6b7280;
}

/* responsivo: se ficar estreito, 1 coluna */
@media (max-width: 380px) {
  .od-tables-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   INTERNA DA MESA / COMANDA
   ========================= */
.od-table-view {
  padding-bottom: 180px; /* espaço pro footer fixo */
}

.od-order-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.od-order-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.od-order-left {
  min-width: 0;
}

.od-order-title {
  font-weight: 800;
  color: #222;
}

.od-order-sub {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 2px;
}

.od-order-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #4b5563;
  margin-top: 2px;
}

/* ====== Pílula de status ====== */
.od-status-pill {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.od-status-pill i {
  font-size: 1rem;
}

.od-status-pill.orange {
  background: rgba(255, 122, 50, 0.18);
  color: #FF7A32;
}

.od-status-pill.turquoise {
  background: rgba(0, 181, 198, 0.18);
  color: #00B5C6;
}

/* ====== Footer fixo ====== */
.od-table-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 72px;
  z-index: 40;
  background: #F4E3C3;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.08);
  padding: 12px 14px;
}

.od-table-footer-inner {
  max-width: 520px;
  margin: 0 auto;
}

.od-sum {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.od-sum-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #4b5563;
}
.od-sum-row strong {
  color: #222;
}

.od-sum-row.total {
  font-size: 1.1rem;
  font-weight: 900;
  color: #222;
}
.od-sum-row.total strong {
  font-weight: 900;
}

/* ====== Botões ====== */
.od-actions {
  display: flex;
  gap: 10px;
}

.od-btn-outline {
  height: 48px;
  border-radius: 12px;
  border: 1px solid #FF7A32;
  color: #FF7A32;
  font-weight: 800;
  background: transparent;
}

.od-btn-outline:hover {
  background: rgba(255, 122, 50, 0.1);
}

.od-btn-solid {
  height: 48px;
  border-radius: 12px;
  background: #FF7A32;
  border: 0;
  color: #fff;
  font-weight: 900;
}

.od-btn-solid:hover {
  background: #E66E2D;
}

.od-add-item-modal {
  border-radius: 24px 24px 0 0;
  background: #F5F5F7;
}

.od-modal-handle {
  width: 48px;
  height: 5px;
  background: #d1d5db;
  border-radius: 999px;
  margin: 12px auto 6px;
}

.od-chip {
  border: 0;
  border-radius: 999px;
  padding: 6px 16px;
  background: #fff;
  font-weight: 700;
}

.od-chip.active {
  background: #00B5C6;
  color: #fff;
}

.od-menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.od-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.od-menu-add {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 0;
  background: #fff;
  font-weight: 900;
}

.od-selected {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  border: 1px solid #F4E3C3;
}

.od-step {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 0;
  background: #e5e7eb;
  font-weight: 900;
}

.od-step.primary {
  background: #00B5C6;
  color: #fff;
}

.od-modal-footer {
  padding: 16px;
  border-top: 1px solid #F4E3C3;
  background: #F5F5F7;
}

/* Gerenciamento de Mesas */
.od-management-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.od-management-actions {
  display: flex;
  gap: 10px;
}

.od-btn-manage {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  transition: all 0.2s;
  cursor: pointer;
}

/* Estilo Adicionar (Verde/Turquesa) */
.od-btn-manage.is-add {
  background: rgba(0, 183, 194, 0.1);
  color: #00B7C2;
}

.od-btn-manage.is-add:hover {
  background: #00B7C2;
  color: #fff;
}

/* Estilo Remover (Vermelho/Cinza) */
.od-btn-manage.is-delete {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.od-btn-manage.is-delete:hover {
  background: #dc3545;
  color: #fff;
}

@media (max-width: 480px) {
  .od-btn-manage span {
    display: none; /* Esconde o texto em telas muito pequenas, deixa só o ícone */
  }
}
/* Ajuste para o dropdown não quebrar o layout do card */
.dropdown-item {
  font-size: 0.9rem;
  transition: background 0.2s;
}

.dropdown-item:active {
  background-color: rgba(255, 122, 50, 0.1);
  color: #FF7A32;
}

.od-status-pill[data-bs-toggle=dropdown] {
  cursor: pointer;
}

/* Panel Orders (Incoming Orders)
   Inspirado no layout do protótipo: card com borda no NOVO, pills e "live" indicator.
*/
.od-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0 10px;
}
.od-screen-header h2 {
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 30px;
}

.od-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
  font-weight: 800;
  font-size: 12px;
}
.od-live .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: odPulse 1.2s infinite;
}

@keyframes odPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}
.od-orders {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.od-order-card {
  background: var(--od-card, #fff);
  border-radius: var(--od-radius, 22px);
  box-shadow: var(--od-shadow, 0 10px 30px rgba(17, 24, 39, 0.08));
  border: 1px solid rgba(17, 24, 39, 0.06);
  overflow: hidden;
}
.od-order-card.is-new {
  border: 2px solid var(--od-primary); /* borda laranja no "novo" */
}
.od-order-card.is-muted {
  opacity: 0.62; /* entregue “apagadinho” */
}

.od-order-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 8px;
}

.od-order-meta {
  color: var(--od-muted, #6b7280);
  font-weight: 800;
  font-size: 13px;
}

.od-order-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.od-order-items {
  padding: 0 14px 12px;
  color: var(--od-muted, #6b7280);
  font-weight: 700;
  font-size: 14px;
}

.od-order-actions {
  padding: 12px 14px 14px;
  display: grid;
  gap: 10px;
}

.od-pill {
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.od-pill.orange {
  background: rgba(255, 122, 41, 0.18);
  color: #cc4c00;
}
.od-pill.cyan {
  background: rgba(0, 183, 194, 0.18);
  color: #067a82;
}
.od-pill.gray {
  background: rgba(107, 114, 128, 0.18);
  color: #374151;
}
.od-pill.sand {
  background: rgba(244, 227, 195, 0.65);
  color: #8a5a00;
}

/* botões com cara do app */
.btn-od-primary {
  background: var(--od-primary);
  color: #fff;
  border: 0;
  border-radius: 14px;
  font-weight: 900;
  padding: 12px 14px;
}
.btn-od-primary:hover {
  filter: brightness(0.96);
  color: #fff;
}

.btn-od-soft {
  background: rgba(255, 122, 41, 0.18);
  color: var(--od-primary);
  border: 1px solid rgba(255, 122, 41, 0.22);
  border-radius: 14px;
  font-weight: 900;
  padding: 12px 14px;
}
.btn-od-soft:hover {
  background: rgba(255, 122, 41, 0.22);
  color: var(--od-primary);
}

.od-empty {
  border-radius: var(--od-radius, 22px);
  border: 2px dashed rgba(107, 114, 128, 0.35);
  background: rgba(255, 255, 255, 0.5);
  padding: 26px 16px;
  text-align: center;
}
.od-empty i {
  font-size: 40px;
  color: var(--od-secondary, #00B7C2);
}

.od-tabs {
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
}
.od-tabs .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.65);
  color: #111827;
  white-space: nowrap;
}
.od-tabs .nav-link:hover {
  background: rgba(255, 255, 255, 0.85);
}
.od-tabs .nav-link.active {
  background: rgba(255, 122, 41, 0.16);
  border-color: rgba(255, 122, 41, 0.3);
  color: #cc4c00;
}

.od-tab-label {
  font-size: 13px;
  letter-spacing: -0.01em;
}

.od-tab-badge {
  min-width: 26px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  background: rgba(107, 114, 128, 0.16);
  color: #374151;
}

.od-tabs .nav-link.active .od-tab-badge {
  background: rgba(255, 122, 41, 0.22);
  color: #cc4c00;
}

.od-management-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.od-select-custom {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
  font-weight: 700;
  color: #4b5563;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.od-select-custom:focus {
  border-color: #FF7A32;
  box-shadow: 0 0 0 0.25rem rgba(255, 122, 50, 0.25);
}

.avatar-sm {
  font-weight: 800;
}

/* Badges de Status da Tabela */
.od-badge {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.od-badge.is-paid {
  background-color: rgba(25, 135, 84, 0.12);
  color: #198754;
  border: 1px solid rgba(25, 135, 84, 0.2);
}

.od-badge.is-open {
  background-color: rgba(255, 122, 41, 0.12);
  color: #FF7A29;
  border: 1px solid rgba(255, 122, 41, 0.2);
}

.bg-soft-primary {
  background-color: rgba(0, 183, 194, 0.1);
}

.table th {
  border-top: none;
  background-color: #fcfcfd !important;
}

.fw-800 {
  font-weight: 800;
}

/* Layout Base */
.od-dashboard {
  padding: 10px;
}

.od-h1 {
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.od-subtitle {
  color: #6c757d;
  font-size: 0.9rem;
}

/* KPI Cards */
.od-kpi {
  padding: 1.25rem;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none;
  min-height: 100px;
}

.od-kpi__label {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.od-kpi__value {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0;
}

.od-kpi--primary {
  background-color: #fff4e5;
  color: #ff9800;
}

.od-kpi--secondary {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.od-kpi--sand {
  background-color: #fffde7;
  color: #fbc02d;
}

.od-kpi--card {
  background-color: #f5f5f5;
  color: #616161;
}

/* Report Buttons */
.od-report-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem;
  background: white;
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid #eee;
}

.od-report-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.od-report-btn__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.od-report-btn__icon.is-daily {
  background: #fff4e5;
  color: #ff9800;
}

.od-report-btn__icon.is-general {
  background: #e3f2fd;
  color: #1976d2;
}

.od-report-btn__label {
  font-weight: 700;
  color: #333;
  font-size: 0.9rem;
}

/* Stall Table Custom */
.od-stall-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.od-stall-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.od-card {
  background: white;
  border-radius: 1.5rem;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.od-card__body {
  padding: 1.5rem;
}

/*# sourceMappingURL=custom.css.map */
