body {
  font-family: Arial, sans-serif;
  background: white;
  color: #000;
  
  width:100%;
}

h1, h2 {
  margin-top: 30px;
}

.summary p {
  margin: 6px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

th, td {
  border: 1px solid #ccc;
  padding: 6px;
  text-align: center;
}

th {
  background: #f2f2f2;
}
.search-container {
        width:100%;
    justify-content: center;
  display: flex;
  align-items: center;

  margin: 20px 0;
  
}

.search-container input {
    background: #d1e8c5;
  border-radius: 8px;
  
  overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      max-width: 400px;
  flex: 1;
  padding: 12px 14px;
  border: none;
  outline: none;
  font-size: 14px;
}

.search-container input::placeholder {
  color: #999;
}

.search-container button {

  padding: 12px 16px;
  border: none;
  background: #007bff;
  color: white;
  font-weight: bold;
  cursor: pointer;

}

