/* Add borders to table and cells */
table {
  border-collapse: collapse;
  border: 1px solid black;
  margin: auto; /* Center the table */
}
th, td {
  border: 1px solid black;
  padding: 8px;
}

/* Add background colors to table rows */
tr:nth-child(even) {
  background-color: #f2f2f2;
}
tr:nth-child(odd) {
  background-color: #ffffff;
}

/* Style table header */
th {
  background-color: #4CAF50;
  color: white;
  font-weight: bold;
}

/* Style search box and button */
#searchInput {
  width: 100%;
  height: 40px;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  padding: 8px;
  margin-bottom: 8px;
}
#searchButton {
  width: 100%;
  height: 40px;
  font-size: 18px;
  background-color: #4CAF50; /* Green button color */
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Change background color of page */
body {
  background-color: #006400; /* Dark green background */
}
