/* ==========================================================================
   [01] HEADER-STRUKTUR
   ========================================================================== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    height: 60px;
    background-color: #ffffff;
    border-bottom: 5px solid #ff751f;
    box-shadow: 0 4px 15px rgba(255, 153, 216, 0.2);
}

/* Die schräge Navy-Fläche als absolutes Overlay */
.header-bg-slash {
    position: absolute;
    top: 0;
    right: 0;
    width: 7%; /* Hier kannst du die Breite anpassen */
    height: 100%;
    background: #004e7a;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1; /* Liegt hinter dem Header-Inhalt */
    pointer-events: none; /* Klicks gehen durch die Fläche durch */
}

.header-inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 30px;
    z-index: 1;
    padding: 0 20px;
    gap: 28%;
    
}

.status-container {
    pointer-events: auto; /* Ticker bleibt klickbar/lesbar */
    display: flex;
    gap: 20px;
    color: #ffffff;
    font-weight: bold;
    font-family: 'Roboto Mono', monospace;
}


.header-logo {
    height: 48px;
    width: auto;
    display: block;
}