/* Mandantenspezifische Farben - erzeugt von apps.theme.views.branding_css.
   Nicht bearbeiten; Werte kommen aus Shop bzw. Theme-Einstellungen. */
:root {
    --theme-primary: #0d6efd;
    --theme-secondary: #6c757d;
    --theme-accent: #f59e0b;
    --accent-color: #0d6efd;
    --nav-hover-color: #0d6efd;
    --nav-dropdown-hover-color: #0d6efd;
}

.btn-primary,
.btn-primary:focus {
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
}

.btn-outline-primary {
    color: var(--theme-primary);
    border-color: var(--theme-primary);
}

.btn-outline-primary:hover {
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
}

a { color: var(--theme-primary); }
.text-primary { color: var(--theme-primary) !important; }
.bg-primary { background-color: var(--theme-primary) !important; }
