/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
:root {
    /* Basis */
    --bs-primary: #00618F;
    --bs-primary-rgb: 0, 97, 143;

    /* Buttons */
    --bs-btn-bg: #00618F;
    --bs-btn-border-color: #00618F;
    --bs-btn-hover-bg: #004f73;        /* etwas dunkler für Hover */
    --bs-btn-hover-border-color: #004f73;
    --bs-btn-active-bg: #003d5a;       /* noch dunkler für Active/Click */

    /* Links */
    --bs-link-color: #00618F;
    --bs-link-hover-color: #004f73;

    /* Primary button */
    .btn-primary {
        --bs-btn-bg: #00618F;
        --bs-btn-border-color: #00618F;
        --bs-btn-hover-bg: #004f73;
        --bs-btn-hover-border-color: #004f73;
        --bs-btn-active-bg: #003d5a;
        --bs-btn-active-border-color: #003d5a;
        --bs-btn-disabled-bg: #00618F;
    }

    /* Pagination */
    .pagination {
        --bs-pagination-active-bg: #00618F;
        --bs-pagination-active-border-color: #00618F;
        --bs-pagination-color: #00618F;
        --bs-pagination-hover-color: #004f73;
        --bs-pagination-focus-color: #00618F;
        --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(0, 97, 143, 0.25);
    }
}

body {
    background-color: #F4F5F6;
}

/* Notification-Level → spezifische Farbe */
.notification-level-1 { background: var(--bs-danger); color: #ffffff; }
.notification-level-2 { background: var(--bs-warning); color: var(--bs-dark) }
.notification-level-3 { background: var(--bs-warning-bg-subtle); color: var(--bs-warning-text-emphasis) }
.notification-level-4 { background: var(--bs-info); color: #ffffff; }
.notification-level-5 { background: var(--bs-success); color: #ffffff; }
.notification-level-6 { background: var(--bs-success); color: #ffffff; }
.notification-level-7 { background: var(--bs-danger); color: #ffffff; }
