/* Hegemonia — estilos globais */
body {
  background: #ffffff;
}

.cursor-pointer { cursor: pointer; }

/* Navbar */
.navbar-brand { letter-spacing: 2px; font-size: 1.3rem; }

/* Cards de condado */
.card { border-radius: 4px; }

/* Mapa SVG */
#map-svg svg { display: block; }
.hex-tile { transition: opacity 0.12s, stroke-width 0.12s; }
.hex-tile:hover { opacity: 0.75; stroke-width: 1.5 !important; stroke: #ffc107 !important; }
.hex-center { stroke: #ffc107 !important; stroke-width: 2.5 !important; }

/* Mapa ASCII vintage */
#map-ascii pre {
  font-family: 'Courier New', 'Lucida Console', monospace;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #4caf50;
}

/* Barra de progresso fina */
.progress { border-radius: 2px; }

/* Tabelas do jogo */
.table-dark td, .table-dark th {
  border-color: #333 !important;
}

/* HTMX indicator */
.htmx-request .htmx-indicator { display: block !important; }

/* Formulário de ordens */
.order-group {
  border-left: 3px solid #ffc107;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

/* Badge de estado */
.badge-status-ok { background: #28a745; }
.badge-status-err { background: #dc3545; }
