/**
 * Estilos específicos para JogosPopulares.php
 * Mesmas atualizações do proximas_partidas
 */

/* Ocultar ícones (favorito, stats, Criar Aposta) na área c-info-more */
#popularMatchesBc .c-info-more-bc,
.jogos-populares-hide-icons {
  display: none !important;
}

/* Cotações em linha reta */
.jogos-populares-odds-row {
  display: flex !important;
  align-items: stretch;
  gap: 8px;
  flex-wrap: nowrap;
}
.jogos-populares-odd-cell {
  flex: 1;
  min-width: 0;
  display: flex;
  text-decoration: none;
  color: inherit;
}
.jogos-populares-odd-betslip {
  cursor: pointer;
}
.jogos-populares-odd-betslip.selected .jogos-populares-odd-box {
  background: rgba(22, 199, 46, 0.35) !important;
  border: 1px solid #16C72E !important;
  color: #fff !important;
}
.jogos-populares-odd-betslip:not(.selected) .jogos-populares-odd-box {
  background: #1a1f1c !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: #16C72E !important;
}
.jogos-populares-odd-box {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  background: #1a1f1c;
  border-radius: 6px;
  color: #16C72E;
  font-weight: 700;
  font-size: 14px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
@media (hover: hover) {
  .jogos-populares-odd-cell .jogos-populares-odd-box:hover {
    background: rgba(22, 199, 46, 0.15);
  }
}
