.standings-widget {
  margin-bottom: 20px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 16px;
  font-size: 0.95rem;
}

.standings-widget .widget-title {
  font-size: 1.2rem;
  font-family: 'Noto Sans', var(--font-main);
  font-weight: 900;
  margin: 0 0 1.5rem 0;
  color: var(--color-text);
  text-align: left;
  position: relative;
  padding: 0.8rem 0 40px 1.5rem;
  background: transparent;
  letter-spacing: -0.01em;
}

.standings-widget .widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0) 0%, rgba(255, 215, 0, 1) 50%, rgba(255, 215, 0, 0) 100%);
}

.standings-widget .widget-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1.2rem;
  background: #FFC107;
  border-radius: 2px;
}

/* Адаптивность для заголовков standings виджета */
@media (max-width: 768px) {
  .standings-widget .widget-title {
    font-size: 1.1rem;
    padding: 0.6rem 0 0.6rem 1.2rem;
    margin: 0 0 1.2rem 0;
  }
  
  .standings-widget .widget-title::before {
    width: 3px;
    height: 1rem;
  }
}

.standings-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #3a3a3c;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.standings-table thead {
  background: rgba(255, 215, 0, 0.5);
}

.standings-table thead th {
  padding: 16px 12px;
  text-align: center;
  color: var(--color-text);
  font-family: 'Noto Sans', var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.standings-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.05);
}

.standings-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.1);
}

.standings-table tbody td {
  padding: 12px;
  text-align: center;
  color: var(--color-text);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
}

.standings-table tbody td:last-child {
  border-right: none;
}

.standings-table tbody tr:last-child td {
  border-bottom: none;
}

.standings-table tbody tr:hover {
  background-color: rgba(255,255,255,0.15);
}

.standings-table tbody tr:hover td {
  background: transparent;
}
