/**
 * @file
 * Styles for info page action links.
 */

.info-page-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.info-page-action {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.info-page-action--create {
  background: #1F5A96;
  color: #fff;
}

.info-page-action--create:hover {
  background: #1B4B8A;
  color: #fff;
  text-decoration: none;
}

.info-page-action--back {
  background: #fff;
  color: #1F5A96;
  border: 1px solid #e5e7eb;
}

.info-page-action--back:hover {
  background: #F3F7FB;
  border-color: #1F5A96;
  color: #1F5A96;
  text-decoration: none;
}
