/* BETA NOTICE FIX - Beta-Hinweis unten über die gesamte Breite */

/* Desktop und Mobile - Beta Notice am unteren Rand */
.beta-notice {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    z-index: 9999 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 15px 20px !important;
    animation: slideUp 0.5s ease-out !important;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Versteckt-Status beibehalten */
.beta-notice[style*="display: none"] {
    display: none !important;
}

/* Stelle sicher dass der Inhalt richtig angezeigt wird */
.beta-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}