.cookie-banner {
    position: fixed;
    z-index:10;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #b7b7b7;
    color: black;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: none;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
}

.cookie-banner button {
    background: #3976ab;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;

}

.cookie-banner button:hover {
    background: #3989cf;
}