@layer customer {
  /* Neutral fallback tokens for initial render */
  :root,
  :host {
    --primary-color: #4b5563 !important;
    --secondary-color: #9ca3af !important;
    --white-color: #ffffff !important;
    --text-color: #242e29 !important;
    font-family: 'DINPro-Regular', sans-serif;
  }

  /* Basis Stye hier definieren und lediglich kundenspezifische Styles in den Kunden.css festhalten
*/

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html,
  body {
    height: 100%;
    margin: 0;
  }

  body {
    background-color: var(--white-color);
    color: var(--text-color);
  }
}
