.bookmaker-table-wrap {
  margin: 30px 0;
  overflow-x: auto;

  border-radius: 22px;
}

.bookmaker-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.bookmaker-table th {
  padding: 16px 18px;

  background: rgba(246, 189, 59, 0.08);
  color: #ffe18a;

  font-size: 12px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bookmaker-table td {
  padding: 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);

  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  vertical-align: middle;
}

.bookmaker-table tr {
  transition: background 0.2s ease;
}

.bookmaker-table tbody tr:hover {
  background: rgba(246, 189, 59, 0.035);
}

.bookmaker-table__brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.bookmaker-table__brand strong {
  color: #f8f8f8;
  font-size: 14px;
  font-weight: 900;
}

.bookmaker-table__logo-placeholder,
.bookmaker-table__logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;

  border-radius: 14px;
  object-fit: contain;

  background: linear-gradient(135deg, #ffe18a, #f6bd3b);
  border: 1px solid rgba(255, 230, 145, 0.48);
  box-shadow: 0 10px 24px rgba(246, 189, 59, 0.12);
}


.bookmaker-table__logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;

  color: #120d05;
  font-size: 22px;
  font-weight: 950;
}

.bookmaker-table__rating {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #f6bd3b;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.bookmaker-table__rating strong {
  color: #f8f8f8;
  font-size: 13px;
}

.bookmaker-table__code {
  width: 124px;
  min-height: 36px;
  padding: 7px 10px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;

  border-radius: 999px;
  border: 1px dashed rgba(246, 189, 59, 0.28);
  background: rgba(246, 189, 59, 0.055);

  color: #ffe18a;
  font-size: 12px;
  font-weight: 900;

  cursor: pointer;
  transition: 0.2s ease;
}

.bookmaker-table__code:hover,
.bookmaker-table__code.is-copied {
  border-color: rgba(246, 189, 59, 0.5);
  background: rgba(246, 189, 59, 0.09);
}

.bookmaker-table__code span {
  max-width: 86px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bookmaker-table__code small {
  color: #f6bd3b;
}

.bookmaker-table__button {
  width: 100%;
  min-height: 40px;
  padding: 0 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;
  border: 1px solid rgba(255, 230, 145, 0.62);

  background: linear-gradient(135deg, #ffe18a, #f6bd3b);
  color: #120d05 !important;

  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;

  box-shadow:
    0 10px 24px rgba(246, 189, 59, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);

  transition: 0.2s ease;
}

.bookmaker-table__button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(246, 189, 59, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.bookmaker-table-wrap::-webkit-scrollbar {
  height: 7px;
}

.bookmaker-table-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.045);
  border-radius: 999px;
}

.bookmaker-table-wrap::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #f6bd3b, #ffe18a);
  border-radius: 999px;
}

.bookmaker-table-wrap {
  scrollbar-width: thin;
  scrollbar-color: #f6bd3b rgba(255, 255, 255, 0.045);
}

.bookmaker-table__code {
  position: relative;
}

.bookmaker-table__code.is-copied {
  border-color: rgba(246, 189, 59, 0.7);
  background: rgba(246, 189, 59, 0.13);
  box-shadow: 0 0 22px rgba(246, 189, 59, 0.16);
}

.bookmaker-table__code.is-copied span {
  color: #ffe18a;
}

.bookmaker-table__code.is-copied small {
  color: #ffe18a;
  transform: scale(1.18);
}

.bookmaker-table__code small {
  transition: 0.2s ease;
}

@media (max-width: 768px) {
  .bookmaker-table {
    min-width: 650px;
  }

  .bookmaker-table th,
  .bookmaker-table td {
    padding: 12px;
    font-size: 12px;
  }

  .bookmaker-table__logo-placeholder,
  .bookmaker-table__logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .bookmaker-table__brand strong {
    font-size: 13px;
  }

  .bookmaker-table__button {
    min-height: 36px;
    font-size: 12px;
  }
}
