/* Mise en valeur de la meilleure cote dans une ligne */
.best-odd {
  background-color: #ecfdf5;
  color: #065f46;
  font-weight: 700;
  outline: 2px solid #10b981;
  outline-offset: -2px;
}

/* Pastille de provenance d'un événement */
.source-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  flex-shrink: 0;
}
.source-oddspapi { background-color: #6366f1; }
.source-oddsapi_io { background-color: #f59e0b; }
.source-multi {
  background: linear-gradient(90deg, #6366f1 0%, #6366f1 50%, #f59e0b 50%, #f59e0b 100%);
}

/* Chips bookmakers (filtre) */
.bookmaker-chip {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 9999px;
  border: 1px solid #cbd5e1;
  background: #fff;
  cursor: pointer;
  user-select: none;
  transition: all 0.1s;
}
.bookmaker-chip:hover { border-color: #94a3b8; }
.bookmaker-chip.active {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

/* Onglets */
.tab.active {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

/* Tableau de cotes */
.event-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 12px 4px;
  overflow-x: auto;
}
table.odds-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  font-size: 13px;
  margin-bottom: 8px;
}
table.odds-table th,
table.odds-table td {
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  padding: 6px 8px;
  text-align: center;
  white-space: nowrap;
}
table.odds-table tr th:first-child,
table.odds-table tr td:first-child {
  border-left: 1px solid #e2e8f0;
}
table.odds-table tr:first-child th { border-top: 1px solid #e2e8f0; }
table.odds-table th:first-child,
table.odds-table td:first-child {
  text-align: left;
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 1;
}
table.odds-table thead th {
  background: #f8fafc;
  font-weight: 600;
  font-size: 12px;
  color: #475569;
}
table.odds-table tbody th {
  font-weight: 500;
  font-size: 12px;
  color: #334155;
}
.odd-cell {
  font-variant-numeric: tabular-nums;
}
.odd-point {
  font-size: 10px;
  color: #64748b;
  margin-left: 2px;
}
