body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f0f0f0, #dfe6e9);
  color: #333;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 30px;
}

header .logo {
  position: absolute;
  left: 0;
  width: 80px;
  height: auto;
}

header h1 {
  text-align: center;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #d63031;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

th, td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #d63031;
  color: white;
  font-weight: 600;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.3rem;
  } 
  table {
    font-size: 0.9rem;
  }
  header .logo {
    width: 60px;
  }
}

