body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 20px;
}
h1 {
  text-align: center;
  color: #343a40;
}
.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.table th,
.table td {
  border: 1px solid #dee2e6;
  padding: 8px;
  text-align: left;
}
.table th {
  background-color: #e9ecef;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f2f2f2;
}
.credits-container {
  text-align: center;
  margin-top: 20px;
  margin-right: 20px;
}
.credits-button {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.credits-button:hover {
  background-color: #45a049;
}
.header-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 20px;
}
.search-container {
  margin-left: auto;
  width: 70%;
}
#searchInput {
  padding: 10px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 5px;
  width: 60%;
  margin-right: 10px;
  transition: border-color 0.3s;
  display: block;
}
#searchInput:focus {
  border-color: #007bff;
  outline: none;
}
