/* Banner Container */
#banner-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    display: none; /* Wird durch JS aktiviert */
    transform: translateY(100%); /* Start außerhalb des sichtbaren Bereichs */
    transition: transform 0.5s ease-in-out; /* Sanfte Animation */
}

/* Banner Content */
#banner-content {
    font-size: 30px;
    line-height: 1.5;
    color: inherit; /* Farbe wird dynamisch gesetzt */
}

/* Moderner Schließen-Button */
#close-banner {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: none;
    border: 2px solid #ffffff;
    border-radius: 50%;
    font-size: 21px;
    color: #ffffff;
    text-align: center;
    line-height: 26px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#close-banner:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    #banner-content {
        font-size: 25px; /* Kleinere Schriftgröße für mobile Geräte */
    }
}
