/* core.css — seitenübergreifende Basis-Styles */

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a1a;
}

/* Primärer Aktions-Button (z.B. "← Zur Suche") */
a.btn {
  display: inline-block; padding: 12px 28px;
  background: #0057a8; color: #fff; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: .95rem;
  transition: background .15s; margin-bottom: 20px;
}
a.btn:hover { background: #004494; }
