/* ---------------------------
   Guestbook Link (Global)
--------------------------- */
.guestbook-link-container {
  width: 100%;              /* full width */
  text-align: center;       /* centers the link */
  margin: 10px 0;           /* spacing below site title */
}

.guestbook-link {
  font-size: 20px;          /* slightly bigger */
  color: #00ff00;           /* bright green */
  font-weight: bold;
  text-decoration: none;
}

.guestbook-link:hover {
  color: #00cc00;           /* darker green on hover */
  text-shadow: 0 0 5px #00ff00;
}

/* ---------------------------
   Guestbook Form Styles (guestbook.html only)
--------------------------- */
#guestbook-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

#guestbook-entry {
  width: 80%;
  max-width: 500px;
  font-size: 16px;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 2px solid #00ff00;
}

#guestbook-form button {
  padding: 6px 12px;
  font-size: 16px;
  border-radius: 6px;
  background-color: #00ff00;
  color: black;
  font-weight: bold;
  cursor: pointer;
}

#guestbook-form button:hover {
  background-color: #00cc00;
}

#guestbook-entries {
  list-style: none;
  text-align: center;
  padding: 0;
  color: #ffffff;
}
