#register label .label {
  color: #444;
}
.galleys .btn-group {
  display: flex;
  flex-direction: column;
  gap: 15px; /* space between buttons */
  margin: 20px 0; /* space top and bottom */
}

.galleys .btn-group .galley-link {
  width: 100%; /* full width of container */
  max-width: 100%; /* prevent overflow */
  word-wrap: break-word; /* wrap long words */
  white-space: normal; /* allow multiple lines */
  box-sizing: border-box;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid transparent;
  border-radius: 5px !important;
  transition: all 0.3s ease;
}

/* First button - Full Issue */
.galleys .btn-group .galley-link:first-of-type {
  background-color: #7b3045;
  color: white;
}

.galleys .btn-group .galley-link:first-of-type:hover {
  background-color: #dc5851;
}

/* Second button - Intro article or similar */
.galleys .btn-group .galley-link:nth-of-type(2) {
  background-color: #e6e6e6;
  color: #333;
  border-color: #adadad;
  border: 1px solid #adadad;
}

.galleys .btn-group .galley-link:nth-of-type(2):hover {
  background-color: #7b3045;
  color: white;
  border-color: #7b3045;
}