.leaderboard-container {
  max-width: 800px;
  margin: 40px auto;
  margin-bottom: 0px !important;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.leaderboard-header {
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid #ddd;
  margin-bottom: 20px;
}

.leaderboard-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.leaderboard-table table {
  width: 100%;
  border-collapse: collapse;
}

.leaderboard-table th,
.leaderboard-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
}

.leaderboard-table th {
  background: #f8f9fa;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
}

.leaderboard-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

.leaderboard-table tbody tr:hover {
  background: #e9ecef;
}

.leaderboard-table td:first-child {
  font-weight: bold;
  text-align: center;
}

@media (max-width: 575px) {
  .leaderboard-container {
    padding: 15px;
  }

  .leaderboard-header h2 {
    font-size: 22px;
  }

  .leaderboard-table th,
  .leaderboard-table td {
    font-size: 14px;
    padding: 8px;
  }
}
