/*

'||''|.   ..|''||   |''||''|     |     |''||''|  ..|''||   
 ||   || .|'    ||     ||       |||       ||    .|'    ||  
 ||...|' ||      ||    ||      |  ||      ||    ||      || 
 ||      '|.     ||    ||     .''''|.     ||    '|.     || 
.||.      ''|...|'    .||.   .|.  .||.   .||.    ''|...|'  
                                                           
                                                           
POTATO.THESERVER.LIFE
LICENSE GPL-3.0

-------------------------------
leaderboard.css
-
Leaderboard styles
*/



.leaderboard-section h2, .profile-section h2 {
    color: #d35400;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 2px solid #27ae60;
    padding-bottom: 5px;
  }
  
  #leaderboard-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  #leaderboard-list li {
    padding: 5px;
    margin-bottom: 5px;
    background-color: rgba(39, 174, 96, 0.2);
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
  }
  
  #leaderboard-list li:nth-child(even) {
    background-color: rgba(39, 174, 96, 0.3);
  }
  
  #leaderboard-list li:first-child {
    background-color: rgba(255, 215, 0, 0.3);
    border: 1px solid gold;
  }