
body {
  font-family: 'Poppins', sans-serif;
  background: #f0f4f8;
  margin: 0;
  padding: 0;
  color: #333;
}
.logo-bar {
  background: #fafafa;
  padding: 10px 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.logo-bar img {
  max-height: 200px;
}
header {
  background: #e6ecf5;
  color: #333;
  padding: 40px 100px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
header h1 {
  margin: 0;
  font-size: 2.5em;
}
.container {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
caption {
  padding: 20px;
  font-size: 1.8em;
  font-weight: bold;
  color: #4a658a;
}
th, td {
  padding: 15px;
  text-align: center;
  vertical-align: middle;
}
th {
  background-color: #e6ecf5;
  color: #4a658a;
  font-weight: 600;
}
tr:nth-child(even) {
  background-color: #f9fbfc;
}
tr:hover {
  background-color: #edf2fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}
.stars {
  color: #ffd700;
  font-size: 1.2em;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}
a.button {
  display: inline-block;
  padding: 8px 16px;
  margin: 5px 5px 0 5px;
  background: #4a658a;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background 0.3s, transform 0.2s;
}
a.button:hover {
  background: #6b84a3;
  transform: scale(1.05);
}
a.secondary-button {
  background: #7892b0;
}
a.secondary-button:hover {
  background: #95a7c2;
}
.buttons-cell {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}
footer a {
  color: #a1c4fd;
  margin: 0 10px;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }
  caption {
    font-size: 1.5em;
    padding: 15px;
  }
  th, td {
    padding: 8px;
    font-size: 0.9em;
  }
  .stars {
    font-size: 1em;
  }
  .buttons-cell {
    flex-direction: column;
  }
  a.button, a.secondary-button {
    width: 90%;
    margin: 5px auto;
  }
}
