body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #fff;
}

.center-container {
  margin-top: 15%;
}

.logo {
  width: 200px;
  margin-bottom: 20px;
}

input[type="text"] {
  width: 400px;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 24px;
  outline: none;
}

button {
  padding: 12px 20px;
  margin-left: 10px;
  font-size: 16px;
  border: none;
  border-radius: 24px;
  background-color: #4285f4;
  color: white;
  cursor: pointer;
}

button:hover {
  background-color: #357ae8;
}
.selected {
  background-color: #d1e7dd;
  font-weight: bold;
}
.footer {
  background-color: #222;
  color: #eee;
  padding: 20px 0;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.footer .brand {
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.footer .copy {
  font-size: 0.9rem;
  color: #aaa;
}
