html, body {
  height: 100%;
  margin: 0;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  text-align: center;
  padding-top: 120px; /* Slightly above center */
}

.input-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 40px;
}

.margin-left {
  margin-left: 5px;
}

.submit-button {
  width: 72px;
}

#countdown {
  margin-top: 83px;
}

.padding-top {
  padding-top: 120px;
}

input, button {
  padding: 10px;
  font-size: 1rem;
  margin: 0;
  border: 1px solid #ccc;
  cursor: pointer;
  box-sizing: border-box;
  height: 40px;
}

#birthYearInput, #searchInput {
  width: 250px;
}

#birthYearInput:focus, #searchInput:focus {
  outline: none;
}

p {
  font-size: 2rem;
  font-weight: bold;
}

.reset-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  color: black;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
}

.reset-button:hover {
  text-decoration: underline;
}

.no-border {
  border-left: none;
}