#cookie-consent {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 99;
    background: #fff;
    color: #222;
    padding: 12px 10px;
    text-align: center;
    font-size: 15px;
}
#cookie-consent .buttons-wrapper {
   display: flex;
    gap: 16px;
    align-items: center;
}

#cookie-consent .buttons-wrapper a {
    color: #222;
}

#cookie-consent button {
    margin-left: 10px;
    padding: 5px 16px;
    background: #25d366;
    border: none;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    #cookie-consent {
        flex-direction: column;
        gap: 8px;
        font-size: 14px;
    }
}