/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: white;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .container {
    width: 80%;
    margin: 20px auto;
    background-color: #2b2b2b;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  h1 {
    text-align: center;
    color: #e0115f; /* Ruby Red */
  }
  
  footer {

    text-align: center;
  }

  table {
    width: 100%;
    border-collapse: collapse;
  }
  
  th, td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #555;
  }
  
  th {
    background-color: #3c3c3c;
    color: #e0115f; /* Ruby Red */
    font-size: 1.2em;
  }
  
  td {
    background-color: #2b2b2b;
    color: #e0e0e0;
  }
  
  /* Highlight for top positions */
  tr:nth-child(1) td {
    background-color: #e0115f; /* Ruby Red */
    color: white;
  }
  
  tr:nth-child(2) td {
    background-color: #cc0050;
  }
  
  tr:nth-child(3) td {
    background-color: #b30045;
  }
  
  tr:hover {
    background-color: #444;
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    .container {
      width: 95%;
    }
  
    th, td {
      padding: 10px;
      font-size: 0.9em;
    }
  }
  