body {
  font-family: Arial, sans-serif;
  background: #f5f6fa;
  margin: 0;
  padding: 0;
}

.tribute-section {
  max-width: 800px;
  margin: 30px auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.tribute-title {
  text-align: center;
  margin-bottom: 20px;
}

.tribute-form input,
.tribute-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.tribute-form button {
  background: #3b5998;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.tribute-form button:hover {
  background: #2d4373;
}

.tribute-list {
  margin-top: 20px;
}

.tribute-message {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.tribute-meta {
  font-size: 14px;
  color: #555;
}

.delete-button {
  color: red;
  font-size: 14px;
  text-decoration: none;
}

.back-button {
  margin-top: 20px;
  text-align: center;
}

.back-button a {
  text-decoration: none;
  color: #3b5998;
}

.login-form input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.login-form button {
  width: 100%;
  padding: 12px;
  background: #3b5998;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.login-form button:hover {
  background: #2d4373;
}

.alert-error {
  background: #ffdddd;
  border: 1px solid #dd5555;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  color: #a33;
}
.pagination {
  text-align: center;
  margin-top: 20px;
}

.pagination a {
  background: #3b5998;
  color: white;
  padding: 8px 14px;
  margin: 0 5px;
  border-radius: 6px;
  text-decoration: none;
}

.pagination a:hover {
  background: #2d4373;
}
body {
  font-family: Arial, sans-serif;
  background: #e8f5e9; /* soft green background */
  margin: 0;
  padding: 0;
}

.tribute-section {
  max-width: 800px;
  margin: 30px auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 3px solid #2e7d32; /* green border */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.tribute-photo {
  text-align: center;
  margin-bottom: 15px;
}

.tribute-photo img {
  max-width: 200px;
  border-radius: 50%;
  border: 4px solid #fdd835; /* yellow border */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.tribute-title {
  text-align: center;
  color: #2e7d32; /* green title */
  margin-bottom: 20px;
}

.tribute-form input,
.tribute-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #c8e6c9; /* light green */
}

.tribute-form button {
  background: #2e7d32; /* green button */
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.tribute-form button:hover {
  background: #1b5e20;
}

.tribute-list {
  margin-top: 20px;
}

.tribute-message {
  border-bottom: 2px solid #c8e6c9; /* green accent */
  padding: 10px 0;
}

.tribute-meta {
  font-size: 14px;
  color: #444;
}

.pagination a {
  background: #fdd835; /* yellow button */
  color: #000;
  padding: 8px 14px;
  margin: 0 5px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.pagination a:hover {
  background: #fbc02d;
}

.back-button a {
  text-decoration: none;
  color: #2e7d32; /* green link */
  font-weight: bold;
}