/* force Bookman font */
* {
  font-family: "Bookman Old Style", Bookman, "URW Bookman", serif;
}

/* fixed top-left logo */
#logo-link {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

#logo-link .logo {
  width: 90px; /* adjust as needed */
  height: auto;
  display: block;
  user-select: none;
}

/* main poem block */
#poem {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.9;
}

#poem span {
  display: block;
}

/* visitor input styling */
#seedInput {
  width: 100%;
  padding: 6px 10px;
  font-family: "Bookman Old Style", Bookman, "URW Bookman", serif;
  font-size: 14px;
  margin-top: 30px;
  margin-bottom: 10px;
  border: 1px solid #000;
  outline: none;
  display: block;
}

#seedInput:focus {
  border-color: #555;
}

/* Freeze/Release button styled like Glitch Bard Phrase button */
#pauseBtn {
  display: inline-block;
  font-family: "Bookman Old Style", Bookman, "URW Bookman", serif;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #000;
  background: #fff;
  height: 32px;
  min-width: 80px;
  line-height: 32px;
  text-align: center;
  padding: 0 12px;
  border-radius: 0;
  margin-top: 60px;
  transition: all 0.2s ease;
}

#pauseBtn:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}