.favorites-sidebar {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
}

.favorites-sidebar-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.favorites-sidebar-group {
  margin-bottom: 14px;
}

.favorite-link {
  display: flex;
  justify-content: space-between;
  padding: 6px 4px;
  cursor: pointer;
  border-radius: 4px;
}

.favorite-link:hover {
  background: #f1f5f9;
}

.favorite-remove {
  color: #ef4444;
  cursor: pointer;
  font-weight: bold;
}

.favorite-sidebar-empty {
  padding: 4px 0;
  color: #94a3b8;
  font-size: 12px;
  font-style: italic;
}

.favorite-sidebar-match {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.favorite-sidebar-match > a {
  display: flex;
  overflow: hidden;
  flex: 1;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.favorite-sidebar-league-logo,
.favorite-sidebar-league-fallback {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.favorite-sidebar-league-logo {
  display: block;
  object-fit: contain;
}

.favorite-sidebar-league-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 10px;
}

.favorite-sidebar-match > a span {
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
