body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #89f7fe, #66a6ff);
  color: #333;
}

.container {
  max-width: 900px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: all 0.3s ease;
}

.container:hover {
  transform: scale(1.01);
}

h1 {
  text-align: center;
  color: #007bff;
  margin-bottom: 10px;
}

.tagline {
  text-align: center;
  color: #555;
  margin-bottom: 20px;
  font-size: 14px;
}

.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

input, select {
  padding: 10px;
  border: 2px solid #007bff;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
  font-size: 14px;
}

input:focus, select:focus {
  border-color: #00b894;
  box-shadow: 0 0 5px #00b894;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fdfdfd;
  border-radius: 10px;
  overflow: hidden;
}

th {
  background: #007bff;
  color: white;
  padding: 12px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.5px;
}

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

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

tr:hover {
  background: #d6ecff;
  transition: 0.2s ease;
}

footer {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: #fff;
}

footer p {
  background: rgba(0, 0, 0, 0.2);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
}
