#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.2);
    padding: 10px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100000001;
    box-sizing: border-box;
}

#cookie-banner p {
    margin: initial;
}

#cookie-banner p a {
    color: #1a73e8;
    white-space: nowrap;
}

#cookie-banner p a:hover {
    text-decoration: underline;
}

#cookie-banner .button-area {
    display: flex;
    justify-content: space-evenly;
    min-width: 300px;
}

#cookie-banner .button-area button {
    background-color: #1a73e8;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    min-width: 120px;
    white-space: nowrap;
    text-align: center;
}

@media screen and (max-width: 782px) {
    #cookie-banner {
        flex-direction: column;
    }

    #cookie-banner p,
    #cookie-banner button {
        margin-bottom: 8px;
        font-size: 14px;
    }
}