.post-actions {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download-link-btn {
  display: inline-block;
  padding: 0.8rem 1rem;
  background-color: #1d7735;
  color: #fff;
  font-size: large;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  min-width: 300px;
  min-height: 50px;
  text-align: center;

  /* Normalize across <a> and <button> */
  border: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  line-height: 1.2;
}

.download-link-btn:hover {
  background-color: #145c29;
  text-decoration: none;
}

.download-link-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(29, 119, 53, 0.4);
}

.download-link-btn[disabled],
.download-link-btn:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}

.post-actions .back-link {
  display: inline-block;
  color: #1d7735;
  text-decoration: none;
  font-weight: 700;
}

.post-actions .back-link:hover {
  text-decoration: underline;
}
