body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #f2f2f2;
  margin-left: 5%;
  margin-right: 5%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1 {
  color: #333;
}

p {
  color: #666;
}

.search-container {
  margin-bottom: 20px;
}

input[type="text"] {
  text-align: center;
  width: 100%;
  max-width: 400px;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 50px;
  /* Add this line for rounded corners */
}

table {
  border-collapse: collapse;
  width: 100%;
  background-color: #fff;
}

th,
td {
  border: 1px solid #ddd;
  padding: 15px;
}

th {
  background-color: #f2f2f2;
  color: #333;
}

.scrollable-table {
  overflow-x: auto;
}

/* Responsive Styles */
@media (max-width: 600px) {
  input[type="text"] {
    width: 100%;
    max-width: none;
  }
}

.content {
  flex: 1;
}

.footers {
  text-align: center;
  font-size: 14px;
  color: #888;
  padding: 10px;
  background-color: #f2f2f2;
}