/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 13 2025 | 06:32:59 */
.odds-section {
  padding: 40px 16px;
  background: #f8fafc;
}

.odds-container {
  margin: 0 auto;
}

.odds-table-wrapper {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  overflow-x: auto;
}

/* Сама таблица */
.odds-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: #1e293b;
  font-family: system-ui, sans-serif;
}

/* Первая строка — как шапка */
.odds-table tr:first-child {
  background: #e2e8f0;
}

.odds-table tr:first-child p {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #334155;
}

/* Ячейки */
.odds-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  vertical-align: middle;
}

.odds-table td p {
  margin: 0;
  font-size: 14px;
  color: #1e293b;
}

/* Полужирный текст чуть крупнее */
.odds-table td p strong {
  font-size: 14px;
  color: #0f172a;
}

/* Зебра для строк с данными */
.odds-table tr:nth-child(2n+2) {
  background: #f1f5f9;
}

/* Ховер по строке */
.odds-table tr:not(:first-child):hover {
  background: #e0f2fe;
  transition: background 0.2s ease;
}

/* Акцент на "SÍ" / "NO" */
.odds-table tr td:last-child p strong {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 13px;
}

/* Подсветка SÍ */
.odds-table tr:nth-child(2) td:last-child p strong {
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
}

/* Подсветка NO */
.odds-table tr:nth-child(3) td:last-child p strong {
  background: rgba(239, 68, 68, 0.15);
  color: #b91c1c;
}

/* Адаптив */
@media (max-width: 768px) {
  .odds-section {
    padding: 24px 12px;
  }

  .odds-table td {
    padding: 10px 10px;
  }

  .odds-table td p {
    font-size: 13px;
  }

  .odds-table tr:first-child p {
    font-size: 11px;
  }
}
