/* #cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: left;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cookie-banner-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-logo {
    font-size: 1em;
    font-weight: bold;
}

.cookie-manage {
    font-size: 1.2em;
    text-align: center;
    width: 100%;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cookie-content p {
    margin: 0;
    flex-grow: 1;
}

.cookie-buttons {
    display: flex;
}

.cookie-buttons button {
    margin-left: 10px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

#accept-cookies {
    background-color: #4CAF50;
    color: white;
}

#reject-cookies {
    background-color: #f44336;
    color: white;
}

.cookie-links {
    width: 100%;
    text-align: left;
    margin-top: 10px;
}

.cookie-links a {
    color: #4CAF50;
    text-decoration: none;
    margin-right: 10px;
}

.cookie-links a:hover {
    text-decoration: underline;
}
*/


#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: left;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center; /* Zentrierung auf mobilen Geräten */
}

.cookie-banner-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-logo {
    max-width: 100px; /* Maximalbreite des Logos anpassen */
    height: auto; /* Automatische Höhe beibehalten */
    margin-right: 10px; /* Optional: Abstand zum Text hinzufügen */
}

.cookie-manage {
    font-size: 1.2em;
    text-align: center;
    width: 100%;
}

.cookie-content {
    display: flex;
    flex-direction: column; /* Auf mobilen Geräten gestapelt */
    align-items: center; /* Zentrierung auf mobilen Geräten */
    width: 100%;
}

.cookie-content p {
    margin: 0;
    margin-bottom: 10px; /* Abstand zwischen den Texten vergrößern */
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap; /* Buttons umbrechen, wenn nicht genug Platz */
    justify-content: center; /* Zentrierung auf mobilen Geräten */
}

.cookie-buttons button {
    margin: 5px; /* Abstand zwischen den Buttons hinzufügen */
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

#accept-cookies {
    background-color: #4CAF50;
    color: white;
}

#reject-cookies {
    background-color: #f44336;
    color: white;
}

.cookie-links {
    width: 100%;
    text-align: center; /* Zentrierung auf mobilen Geräten */
    margin-top: 10px;
}

.cookie-links a {
    color: #4CAF50;
    text-decoration: none;
    margin: 0 5px; /* Abstand zwischen den Links hinzufügen */
}

.cookie-links a:hover {
    text-decoration: underline;
}
