.btn-primary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  background: #008bd2; /* Hauptfarbe */
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease;
	width: max-content;
  height: max-content;
}
.btn-primary:hover {
  background: #0074ad;
}

.btn-ghost {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111827;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
}
.btn-ghost:hover {
  border-color: #008bd2;
  color: #008bd2;
}
