        header {
            background-color: #e10600;
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            text-decoration: none;
            color: #e10600;
            transition: color 0.3s;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            background: white;
            color: #e10600;
            padding: 0 5px;
            margin-right: 5px;
            border-radius: 4px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 20px;
        }
        
        nav ul li a {
            color: white;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: beige;
  color: #fff;
  padding: 40px;
}

h1 {
  text-align: center;
  color: #242020;
  margin-bottom: 20px;
}
h2{
  color: #242020;
  text-align: center;
}

#updateScoresBtn {
  display: block;
  margin: 0 auto 30px auto;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #e10600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
  box-shadow: 0 0 10px rgba(225, 6, 0, 0.7);
}
#updateScoresBtn:hover {
  background-color: #b30500;
  box-shadow: 0 0 15px rgba(225, 6, 0, 1);
}

.standings-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.standings-section {
  width: 48%;
  margin-bottom: 20px;
}

.f1-table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: #1c1c1c;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.f1-table th,
.f1-table td {
  padding: 14px 18px;
  border: 1px solid #333;
  text-align: center;
  font-size: 14px;
}

.f1-table th {
  background-color: #e10600;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.f1-table tbody tr:nth-child(even) {
  background-color: #2a2a2a;
}

.f1-table tbody tr:hover {
  background-color: #333;
}

.team,
.driver {
  font-weight: bold;
  text-align: left;
  padding-left: 12px;
}

/* Team colors */
.red-bull { color: #3671C6; }
.mercedes { color: #00D2BE; }
.ferrari { color: #DC0000; }
.mclaren { color: #FF8000; }
.aston-martin { color: #006F62; }
.alpine { color: #2294F4; }
.alpha-tauri { color: #4E8BFE; }
.alfa-romeo { color: #9B1414; }
.williams { color: #005AFF; }
.haas { color: #B6BABD; }

/* Drivers colors (optional) */
.max-verstappen { color: #3671C6; }
.lewis-hamilton { color: #00D2BE; }
.charles-leclerc { color: #DC0000; }
.lando-norris { color: #FF8000; }
.fernando-alonso { color: #006F62; }

/* Highlight top and bottom */
.top-row {
  background-color: #2a4d14 !important;
  color: #d4edda !important;
  font-weight: bold;
  box-shadow: 0 0 10px #8bc34a;
}

.bottom-row {
  background-color: #4d1414 !important;
  color: #f8d7da !important;
  font-weight: bold;
  box-shadow: 0 0 10px #f44336;
}

/* Responsive */
@media (max-width: 900px) {
  .standings-section {
    width: 100%;
  }
}
