/* === base.css === */

/* Typo & Layout */
body {
  font-family: Arial, sans-serif;
  background-color: #f5f7fa;
  margin: 0;
  padding: 2rem;
  color: #333;
}

h2 {
  text-align: center;
  color: #333;
}

/* Buttons */
button,
.icon-button,
.admin-link-button {
  padding: 0.6rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

button:hover,
.admin-link-button:hover,
.icon-button:hover {
  opacity: 0.9;
}

/* Messages */
.message {
  margin-top: 1rem;
  padding: 0.7rem;
  border-radius: 4px;
}

.success {
  background-color: #e6ffed;
  border: 1px solid #34c759;
  color: #1e4620;
}

.error {
  background-color: #ffe6e6;
  border: 1px solid #ff3b30;
  color: #611a1a;
}

.logout {
  text-align: right;
  margin-top: 2rem;
}

.logout a {
  color: #2a7de1;
  text-decoration: none;
}

.logout a:hover {
  text-decoration: underline;
}
