        body {
            background:#ededed;
            font-size:15px;
            font-family:'Public Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        a {
            color:#254871;
        }
        .component-link {
            border-bottom: 1px solid transparent;
            transition: color .15s ease, border-color .15s ease;
        }
        .component-link:hover {
            color: var(--bs-primary);
            border-bottom-color: rgba(var(--bs-primary-rgb), .35);
        }
        .component-row:hover {
            background-color: rgba(0, 0, 0, 0.03);
        }
        .xynta-logo {
            content: url("/assets/img/logo-xynta.webp");
            margin-top:-3px;
        }
        .xynta-logo-text {
            content: url("/assets/img/logo-xynta-text.webp");
            margin-top:-3px;
        }
        .component-history-grid {
            display: grid;
            grid-template-columns: repeat(30, 1fr);
            gap: 2px;
        }
        /* Component history – neutral/unknown days (light mode) */
        .component-history-grid .bg-secondary {
            background-color: #ccc !important;
        }
        .component-history-grid .border-secondary {
            border-color: #dde3ea !important;
        }
        .component-history-grid .history-day {
            height: 14px;
            border-radius: 2px;
        }

        /* ================================
           Calendar no-data overlay – Light mode
           ================================ */

        .no-data-overlay {
            background: rgba(255, 255, 255, 0.8);
        }

        .no-data-overlay span {
            color: #6b7280; /* muted gray, readable but subtle */
        }
        .component-name a:hover {
            text-decoration: underline;
        }
        .list-group-flush {
            background:none;
        }
        .btn-outline-primary {
            color:#254871;
            border-color:#254871;
        }
        .btn-outline-primary:hover {
            background:#254871;
            color:#fff;
            border-color:#254871;
        }
        .container-fluid-intro {
            position: relative;
            padding-top: 125px;
            padding-bottom: 50px;
            background: url(/assets/img/header-bg.webp) center center fixed;
            background-size:512px auto;
            color: #f7f7f7;
            overflow: hidden;
        }
        .container-fluid-intro h1 {
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0,0,0,0.25);
            font-family: 'Unbounded', 'Public Sans', sans-serif;
            text-transform: uppercase;
            font-size: 1.65rem;
        }
        .container-fluid-intro p {
            max-width: 720px;
            margin: 0 auto;
            font-size: 1.0rem;
            line-height: 1.5;
            color: rgba(247,247,247,0.85);
            text-shadow: 0 1px 1px rgba(0,0,0,0.2);
        }
        .container-fluid-intro > * {
            position: relative;
            z-index: 1;
        }
        .form-check-input:checked {
            background-color: #244873;
            border-color: #244873;
        }
        .form-switch .form-check-input:checked {
            background-color: #244873;
        }
        .container-fluid-intro .intro {
            font-size:17px;
        }
        .container-content {
            margin-top:60px;
        }
        h2, h3, h4, h5, h6 {
            font-family: 'Public Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        .timeline {
            position: relative;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 18px; /* uitlijning met iconen */
            top: 0;
            bottom: 0;
            width: 3px;
            background: repeating-linear-gradient(
                to bottom,
                #c7cdd4,
                #c7cdd4 5px,
                transparent 5px,
                transparent 10px
            );
            opacity: 0.6;
        }
        /* Stop timeline line at last item */
        .timeline li:last-child::before {
            display: none;
        }
        .timeline li:last-child .card.update {
            margin-bottom:0!important;
        }
        /* Ensure no extra spacing under timeline */
        .timeline {
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .timeline li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
        }
        /* Timeline icon base */
        .timeline-icon {
            position: absolute;
            left: 0;
            top: 0;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4px;
            border: 1px solid var(--bs-border-color);
        }

        /* Icon size */
        .timeline-svg {
            width: 20px;
            height: 20px;
            display: block;
        }
        /* INCIDENTS */

        /* reported – red */
        .timeline-icon.is-reported {
            background-color: #fde8e8;
            border-color: #f2bcbc;
        }

        /* investigating – orange */
        .timeline-icon.is-investigating {
            background-color: #fff1e6;
            border-color: #f0c9a6;
        }

        /* identified – yellow */
        .timeline-icon.is-identified {
            background-color: #fef9e7;
            border-color: #f3e3a4;
        }

        /* watching – blue */
        .timeline-icon.is-watching {
            background-color: #e7f1fb;
            border-color: #bcd6f0;
        }

        /* fixed – green */
        .timeline-icon.is-fixed {
            background-color: #edf6ea;
            border-color: #c9e0c2;
        }

        /* MAINTENANCE */

        /* planned – blue */
        .timeline-icon.is-planned {
            background-color: #eef5fb;
            border-color: #cddff0;
        }

        /* active – orange */
        .timeline-icon.is-active {
            background-color: #fff1e6;
            border-color: #f0c9a6;
        }

        /* completed – green */
        .timeline-icon.is-completed {
            background-color: #edf6ea;
            border-color: #c9e0c2;
        }

        /* Status badges – Helios style */
        .badge-status-reported {
            background-color: #fde8e8;
            color: #b42318;
            border: 1px solid #f2bcbc;
        }

        .badge-status-investigating {
            background-color: #fff1e6;
            color: #b45309;
            border: 1px solid #f0c9a6;
        }

        .badge-status-identified {
            background-color: #fef9e7;
            color: #92400e;
            border: 1px solid #f3e3a4;
        }

        .badge-status-watching {
            background-color: #e7f1fb;
            color: #1d4ed8;
            border: 1px solid #bcd6f0;
        }

        .badge-status-fixed,
        .badge-status-completed {
            background-color: #edf6ea;
            color: #1f2d16;
            border: 1px solid #c9e0c2;
        }

        .badge-status-planned {
            background-color: #eef5fb;
            color: #1e40af;
            border: 1px solid #cddff0;
        }

        .badge-status-active {
            background-color: #fff1e6;
            color: #b45309;
            border: 1px solid #f0c9a6;
        }
        .badge.bg-primary {
            background-color: rgba(37, 70, 114, 0.12);
            color: #254672;
            border: 1px solid rgba(37, 70, 114, 0.35);
        }
        .badge-primary {
            background:none!important;
            border: 1px solid rgba(37, 70, 114, 0.35);
            color: #254672;
        }
        .timeline li:last-child::after {
            display: none;
        }
        .card,
        .accordion-item,
        .alert,
        .btn {
            border-radius: 10px;
        }
        .card .card-header {
            border-top-left-radius:10px;
            border-top-right-radius:10px;
            padding-top:12px;
            padding-bottom:12px;
        }
        .card .card-footer {
            background:#fff;
        }
        .card-body ul li:last-child,
        .card-body p:last-child {
            margin-bottom: 0;
        }
        .card-body ul:last-child {
            margin-bottom: 0;
        }
        .timeline::before {
            opacity: .35;
        }
        .timeline li {
            padding-bottom: .25rem;
        }
        :root {
            --bs-primary: #254672;
            --bs-info: #89b2d1;
            --bs-success: #98be61;
            --bs-info-rgb: 137, 178, 209;
            --bs-success-rgb: 152, 190, 97;
        }
        .bg-info {
            background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
        }
        .border-info {
            border-color: var(--bs-info) !important;
        }
        .text-info {
            color: var(--bs-info) !important;
        }
        .bg-success {
            background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
        }
        .border-success {
            border-color: var(--bs-success) !important;
        }
        .text-success {
            color: var(--bs-success) !important;
        }
.btn-primary {
    background-color: #254672;
    border-color: #254672;
    color: #ffffff;
    font-weight: 500;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #1e3a5f;
    border-color: #1e3a5f;
    color: #ffffff;
}

.btn-secondary {
    background-color: #eef2f7;
    border-color: #d6dee8;
    color: #254672;
    font-weight: 500;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #e3e9f0;
    border-color: #c7d1dd;
    color: #254672;
}
/* Helios theme toggle – light mode selected state */
.helios-theme-toggle .btn.is-selected {
    background-color: #eef5fb;
    border-color: #cddff0;
    color: #1e40af;
}
        .navbar-nav .nav-link {
            font-size:17px
        }

        /* Desktop navbar alignment & subtle divider */
        @media (min-width: 992px) {
            .navbar .navbar-nav .nav-link {
                display: flex;
                align-items: center;
                padding-top: 0;
                padding-bottom: 0;
                height: 36px;
            }
            .navbar .navbar-nav .nav-first {
                position: relative;
                margin-left: 12px;
                padding-left: 16px;
            }
            .navbar .navbar-nav .nav-first::before {
                content: "";
                position: absolute;
                left: 0;
                top: 4px;
                bottom: 4px;
                width: 1px;
                background-color: rgba(0, 0, 0, 0.12);
            }
            .navbar .badge {
                padding: 0.35rem 0.55rem;
                border-radius: 999px;
                white-space: nowrap;
            }
        }
        @media (max-width: 991.98px) {
            .xynta-logo,
            .xynta-logo-text {
                margin-top:3px;
            }
            .navbar-toggler {
                width: 36px;
                height: 36px;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: center;

                background-color: rgba(36, 72, 115, 0.08);
                border: 1px solid rgba(36, 72, 115, 0.18);
                border-radius: 8px;
            }
            .navbar-toggler .navbar-toggler-icon {
                width: 18px;
                height: 18px;
                background-size: 18px 18px;
            }
            .navbar-toggler[aria-expanded="true"] {
                background-color: rgba(36, 72, 115, 0.14);
                border-color: rgba(36, 72, 115, 0.28);
            }
            .navbar-toggler:focus {
                box-shadow: 0 0 0 0.15rem rgba(36, 72, 115, 0.25);
            }
            .navbar.fixed-top {
                padding-left: 0;
                padding-right: 0;
            }
            .navbar.fixed-top .container {
                width: calc(100% - 32px);
                padding-left: 16px;
                padding-right: 16px;
                padding-top: 10px;
                padding-bottom: 10px;
            }
            .navbar-brand {
                display: flex;
                align-items: center;
                gap: 6px;
                padding: 0;
            }
            .navbar-brand img {
                height: 16px;
                display: block;
            }
            .navbar-toggler .navbar-toggler-icon {
                width: 1.25em;
                height: 1.25em;
            }
            .navbar-toggler:focus {
                box-shadow: 0 0 0 0.15rem rgba(36, 72, 115, 0.25);
            }
            .navbar .navbar-toggler {
                margin-right: 0;
            }
            .navbar-collapse {
                margin-top: 10px;
                margin-bottom: 0;
                /* Smooth collapse animation – prevent layout thrash */
                transition: height 0.25s ease, opacity 0.2s ease;
                overflow: hidden;
            }
            /* Predefine padding to avoid jump on expand */
            .navbar-collapse .navbar-nav {
                margin-bottom: 0;
                padding-top: 4px;
                padding-bottom: 4px;
            }
            /* Fade-in effect when opening */
            .navbar-collapse.collapsing {
                opacity: 0;
            }
            .navbar-collapse.show {
                opacity: 1;
            }
            .navbar-nav .nav-item {
                margin: 0;
            }
            .navbar-nav .nav-link {
                font-size: 0.95rem;
            }
            .container-fluid-intro h1 {
                font-size:1.45rem;
            }
            .navbar-nav {
                border-top:1px solid #ddd;
                text-align:center;
                padding-bottom:0;
                padding-top:5px;
                margin-bottom:0;
            }
            .navbar-nav  li .nav-link {
                margin-bottom:0;
                padding-bottom:0;
                display:block
            }
        }
        /* Accordion / dropdown active state – Helios style */
        /* (Overschreven door nieuwe Helios-stijl bovenaan) */

        /* Focus state neutraliseren */
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(37, 70, 114, 0.25);
        }

        /* Active item subtle emphasis */
        .accordion-item {
            border-color: rgba(0,0,0,0.08);
        }

        .accordion-item:has(.accordion-button:not(.collapsed)) {
            background-color: #f9fafb;
        }

        /* Dropdown menu active (if used later) */
        .dropdown-menu .dropdown-item.active,
        .dropdown-menu .dropdown-item:active {
            background-color: #f5f7fa;
            color: #254672;
        }
        /* 1) Verbeterd tekstcontrast voor alert-warning */

        .alert-warning {
            color: #7a3e00;
        }

        /* Helios-style alert-info */
        .alert-info {
            background-color: #eef5fb;
            color: #254672;
            border: 1px solid #cddff0;
        }

        /* Helios-style alert-success */
        .alert-success {
            background-color: rgba(var(--bs-success-rgb), 0.18);
            color: #1f2d16;
            border: 1px solid rgba(var(--bs-success-rgb), 0.45);
        }

        /* 2) Accordion flush: subtiele scheidingslijn, geen witte rand */
        .accordion-flush .accordion-item {
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }
        .accordion-flush .accordion-item:last-child {
            border-bottom: none;
        }
        .accordion-item {
            background-color: transparent;
        }

        /* 3) Accordion chevron duidelijker */
        .accordion-button::after {
            filter: brightness(0.4);
            opacity: 0.9;
        }
        .accordion-button:not(.collapsed)::after {
            filter: brightness(0.4);
            opacity: 0.9;
        }

        /* 4) Accordion active achtergrond Helios-stijl */
        .accordion-button:not(.collapsed) {
            background-color: #eef2f7;
            color: #254672;
        }