/* Password Gate Styling */
#password-gate {
  text-align: center;
  padding: 20px;
  background-color: #f8f0f0;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: 20px auto;
  max-width: 400px;
}

#password-gate input {
  padding: 10px;
  width: 80%;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #aaa;
}

#password-gate button {
  background-color: #800000;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#password-gate button:hover {
  background-color: #a30000;
}