/* Override des alten Cookie-Note-Blocks */
div#cookie-note {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 1337;

    /* Neues Look & Feel */
    background: rgba(7, 13, 24, 0.96);
    color: #fff;

    width: calc(100% - 32px);
    max-width: 960px;
    height: auto;
    max-height: calc(100% - 32px);

    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.55);

    display: block;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;


    /* mehr Innenabstand unten, damit nichts abgeschnitten wirkt */
    padding-top: 20px;
    padding-bottom: 26px;
}

/* falls dein HTML ein eigenes Wrapper-Element für den Inhalt hat */
#cookie-note #cookie-note-content {
    margin-bottom: 10px;  /* Abstand zwischen Text/Details und den Buttons */
}
}

/*div#cookie-note {
    background-color: white;
    color: black;
    box-shadow: 0 0 5px 2px rgba(0,0,0,0.2);
    display: block;
    right: 20px;
    bottom: 20px;
    position: fixed;
    height: auto;
    width: 25em;
    z-index: 1337;
    padding: 10px;
}
*/