.notification-banner-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 50px; /* Adjust this value as needed */
}

.notification-banner {
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: none; /* Hide by default */
    height: 100%;
}

.notification-banner.active {
    display: block; /* Show when active */
    position: relative; /* Change to relative when active */
}

.notification-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.notification-banner-content {
    position: relative;
    z-index: 1;
    font-size: 28px !important;
    font-weight: bold !important;
}

.notification-banner.slide-in .notification-banner-content {
    animation: slideIn 0.5s ease-out;
}

.notification-banner.fade-in .notification-banner-content {
    animation: fadeIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}