.sn-league-sidebar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  
  box-shadow: var(--shadow);
  max-height: 85vh;
  overflow-y: auto;
  z-index: 10;
}

.sn-sidebar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.sn-sidebar-head strong {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
}

.sn-sidebar-search {
  width: 100%;
  padding: 12px 13px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  outline: none;
  margin-bottom: 14px;
}

.sn-league-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sn-side-title {
    width:100%;
  font-size: 12px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  margin: 18px 6px 8px;
}

.sn-league-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 9px;
  border-radius: 12px;
  cursor: pointer;
  transition: .2s ease;
}

.sn-league-item:hover {
  background: rgba(0, 155, 77, .09);
}

.sn-league-item img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.sn-league-item span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.sn-empty {
  color: var(--muted);
  padding: 12px;
}

@media(max-width:900px) {
  .sn-league-sidebar {
    position: relative;
    top: 0;
    max-height: none;
  }
}