#password-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #f5f1e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: 'Lexend', sans-serif;
}

#password-overlay h1 {
  color: #5c3a21;
  font-size: 2rem;
  text-align: center;
}

#password-overlay input {
  font-size: 1.2rem;
  padding: 0.5em;
  margin-top: 1em;
  border-radius: 8px;
  border: 2px solid #5c3a21;
}

#password-overlay button {
  font-size: 1rem;
  padding: 0.5em 1em;
  margin-top: 0.5em;
  background-color: #5c3a21;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#password-overlay button:hover {
  background-color: #f7c6a3;
  color: #5c3a21;
}

#password-error {
  color: red;
  margin-top: 0.5em;
  display: none;
}