/* Top Performers Card Styles */
.top-performers-list {
  max-height: 300px;
  overflow-y: auto;
}

.top-performers-list-item {
  transition: all 0.2s ease;
  padding: 0.75rem 1rem;
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 0.5rem;
  border: none;
  background-color: transparent;
  margin-bottom: 0.5rem;
}

.top-performers-list-item:hover {
  transform: translateX(5px);
  background-color: rgba(0, 0, 0, 0.04);
}

/* Custom Scrollbar */
.top-performers-list::-webkit-scrollbar {
  width: 4px;
}

.top-performers-list::-webkit-scrollbar-track {
  background: transparent;
}

.top-performers-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.top-performers-list::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}

/* Firefox scrollbar */
.top-performers-list {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
} 