.guestbook-content {
  width: min(94vw, 6000px);
  max-width: 600px;
  margin-bottom: 40px;
}

.guestbook-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.guestbook-form textarea {
  width: 100%;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 8px;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
}

.guestbook-form input[type="file"] {
  font-family: inherit;
}

.guestbook-form input[type="file"]::file-selector-button,
.guestbook-form input[type="file"]::-webkit-file-upload-button {
  width: 90px;
  margin-top: 5px;
  margin-right: 8px;
  padding: 6px 10px;
  background: #fff;
  border: 2px solid black;
  color: #000;
  cursor: pointer;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 400;
  transition: none;
}

.guestbook-form button {
  width: 120px;
  margin-top: 5px;
  padding: 6px 10px;
  background: #fff;
  border: 2px solid black;
  color: #000;
  cursor: pointer;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 400;
  transition: none;
  animation: none;
  transform: none;
}

.guestbook-form button:hover,
.guestbook-form button:active {
  transform: none;
  animation: none;
}

.guestbook-status {
  min-height: 1.25rem;
  margin: 0;
  font-weight: 700;
}

.guestbook-entries {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.guestbook-entry {
  border: 2px dotted #fff;
  border-radius: 10px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.25);
}

.guestbook-entry-meta {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: #ffe9f4;
}

.guestbook-entry-comment {
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.35;
}

.guestbook-entry-photo {
  display: block;
  margin-top: 10px;
  width: 100%;
  max-width: 380px;
  border-radius: 8px;
  border: 2px solid #fff;
}
