#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 4px;
    text-align: center;
    display: none; /* Versteckt den Banner standardmäßig */
    z-index: 1000;
}
#cookie-banner button {
    background-color: #9bb4df;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 5px;
    margin-top: 1px;
    cursor: pointer;
    width: 100px;
    height: 32px;
}
#cookie-banner button:hover {
    background-color: #45a049;
}