/* NAVBAR VOLLE BREITE AM OBEREN RAND */

/* Navigation über volle Breite */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    transform: none !important;
    z-index: 99999 !important;
    width: 100% !important;
    max-width: 100% !important;
    will-change: auto !important;
    contain: none !important;
    border-radius: 0 !important;
}

/* Entferne alle Transforms von Parent-Elementen die fixed brechen könnten */
body,
html,
main {
    transform: none !important;
    will-change: auto !important;
    perspective: none !important;
}

/* Stelle sicher dass keine anderen Elemente die Navbar überdecken */
* {
    z-index: auto;
}

.navbar {
    z-index: 99999 !important;
}

/* Mobile - auch volle Breite */
@media (max-width: 768px) {
    .navbar {
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
    }
}