/******************
    User custom CSS
    ---------------
    
    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/
/* Custom CSS für Zöliakie Austausch */

:root {
    --primary: #db0d10;       /* Dein Zöliakie-Rot */
    --secondary: #6c757d;     /* Grau */
    --dark: #1a1a1a;          /* Fast Schwarz für bessere Lesbarkeit */
    --light: #f8f9fa;         /* Helles Grau/Weiß für Hintergründe */
}

/* Hintergrund des gesamten Formulars */
body {
    background-color: #ffffff;
    color: var(--dark);
}

/* Hauptbalken / Header */
.navbar-brand, .header-bg {
    background-color: var(--dark);
    border-bottom: 3px solid var(--primary);
}

/* Weiter- und Absendebuttons */
.btn-primary, .button-submit {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

.btn-primary:hover, .button-submit:hover {
    background-color: #b3050f !important; /* Dunkleres Rot beim Hovern */
    border-color: #b3050f !important;
}

/* Fortschrittsbalken */
.progress-bar {
    background-color: var(--primary);
}

/* Panel/Fragen-Rahmen farblich anpassen */
.page-container {
    background-color: var(--light);
    border-top: 4px solid;
}
