/* odds-heatmap.css - Versão com verde fixo */

/* ===== Estilos base para as caixas de odds ===== */
.odd-value {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 6px !important;
  padding: 0.18rem 0.28rem !important;
  font-weight: 600 !important;
  text-align: center !important;
  transition: all 0.15s ease !important;
  min-width: 38px !important;
  border: 1px solid !important;
  color: white !important;
  font-size: 0.78rem !important;
  box-sizing: border-box !important;

  /* Verde fixo */
  background-color: #28a745 !important;
  border-color: #1e7e34 !important;
}

.odd-value:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Placeholder para odds inválidas (já cobre o verde) */
.odd-value.placeholder {
  background-color: #6c757d !important;
  border-color: #5a6268 !important;
  color: white !important;
}

/* ===== Grid principal (3 colunas) ===== */
.odds-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .odds-main-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Cards de cada mercado ===== */
.market-card {
  background: transparent;
  border-radius: 0px;
  padding: 1rem;
}

.market-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  padding-bottom: 0.5rem;
}

/* ===== Linha de odd (rótulo + valor) ===== */
.odd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

/* ===== Badge do bookmaker ===== */
.bookmaker-badge {
  text-align: center;
  margin-bottom: 0.75rem;
  padding-top: 10px;
}
.bookmaker-badge .badge {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  background-color: #6c757d;
  color: white;
  border-radius: 20px;
}

/* ===== Ajustes para telas muito pequenas ===== */
@media (max-width: 400px) {
  .odd-value {
    padding: 0.25rem 0.30rem !important;
    min-width: 40px !important;
    font-size: 0.80rem !important;
  }
  .market-card {
    padding: 0.75rem;
  }
  .market-card h4 {
    font-size: 0.9rem;
  }
  .odd-row {
    font-size: 0.85rem;
  }
}