
    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      background-color: #121212;
      color: white;
    }

    a {
      text-decoration: none;
    }

    .dark-header {
      background-color: #1a1a1a;
      border-bottom: 1px solid #333;
    }

    .icono {
  width: 50px;
}
.title {
  display: flex;
  flex-direction: row; 
    gap: 10px;
  align-items: center;
  justify-content: center; 
}

    .title-text {
      font-weight: 700;
      font-family: 'Rajdhani', sans-serif;
      color: #ffffff;
      text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }

    .dark-nav-link {
      color: #e0e0e0 !important;
      transition: all 0.3s ease;
    }

    .dark-nav-link:hover {
      color: #ffffff !important;
    }

    .leaderboard-container {
      position: relative;
      margin: 30px auto;
      width: 850px;
      background: linear-gradient(145deg, #1a1a1a, #222222);
      border: 2px solid #444;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      padding: 15px;
      color: white;
      font-family: "Arial", sans-serif;
      z-index: 10;
    }

    .leaderboard-container::before {
      content: attr(data-label);
      position: absolute;
      top: -15px;
      left: 40px;
      background: linear-gradient(145deg, #1a1a1a, #222222);
      padding: 2px 10px;
      font-weight: bold;
      font-size: 14px;
      border-radius: 5px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      border: 2px solid #444;
    }

    .leaderboard-header {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }

    .leaderboard-header h2 {
      font-weight: 600;
      margin: 0;
      color: #f8d347;
      text-shadow: 0 0 5px rgba(248, 211, 71, 0.3);
    }

    .trophy-icon {
      font-size: 24px;
      color: #f8d347;
    }
    .leaderboard-table1d,
    .leaderboard-table,
    .leaderboard-table7d {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      font-size: 16px;
    }
    .leaderboard-table1d thead,
    .leaderboard-table thead,
    .leaderboard-table7d thead {
      background-color: #333;
    }
    .leaderboard-table1d th,
    .leaderboard-table th,
    .leaderboard-table7d th {
      padding: 12px 10px;
      text-align: center;
      border-bottom: 2px solid #444;
      color: #f8d347;
    }
    .leaderboard-table1d td,
    .leaderboard-table td,
    .leaderboard-table7d td {
      padding: 10px;
      text-align: center;
      border-bottom: 1px solid #444;
    }
    .leaderboard-table1d tbody tr:ntb-child(odd),
    .leaderboard-table tbody tr:nth-child(odd),
    .leaderboard-table7d tbody tr:nth-child(odd) {
      background-color: #252525;
    }
    .leaderboard-table1d tbody tr:nth-child(even),
    .leaderboard-table tbody tr:nth-child(even),
    .leaderboard-table7d tbody tr:nth-child(even) {
      background-color: #2a2a2a;
    }
    .leaderboard-table1d tbody tr:hover
    .leaderboard-table tbody tr:hover,
    .leaderboard-table7d tbody tr:hover {
      background-color: #333;
      transform: scale(1.01);
      transition: all 0.2s ease;
    }
    .leaderboard-table1d tbody tr:first-child td,
    .leaderboard-table tbody tr:first-child td,
    .leaderboard-table7d tbody tr:first-child td {
      text-shadow: 0 0 5px rgba(248, 211, 71, 0.3);
      color: gold;
      font-weight: bold;
    }
    .leaderboard-table1d tbody tr:nth-child(2) td,
    .leaderboard-table tbody tr:nth-child(2) td,
    .leaderboard-table7d tbody tr:nth-child(2) td {
      text-shadow: 0 0 5px rgba(95, 179, 235, 0.3);
      color: rgb(95, 179, 235);
      font-weight: bold;
    }
    .leaderboard-table1d tbody tr:nth-child(3) td,
    .leaderboard-table tbody tr:nth-child(3) td,
    .leaderboard-table7d tbody tr:nth-child(3) td {
      text-shadow: 0 0 5px rgba(95, 179, 235, 0.3);
      color: #cd7f32;
      font-weight: bold;
    }
    .leaderboard-table1d,
    .leaderboard-table td,
    .leaderboard-table7d td {
      color: silver;
    }