/* Logo */


/* Buttons container */
.buttons {
  display: flex;
  gap: 12px;
}

/* Make <a> look like buttons */
.btn {
  padding: 10px 18px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.2s ease;
}

.btn:hover {
  background-color: #0056b3;
}

.subtext {
  font-size: 13px;
  color: #777;
}
