/* 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;
}

.button-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    align-items: center;
}