.cookiebanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 15px;
    z-index: 9999;
    font-size: 16px;
}

.cookiebanner__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookiebanner__text {
    max-width: 70%;
}

.cookiebanner__link {
    color: #4ea3ff;
    text-decoration: underline;
}

.cookiebanner__button {
    background: #4ea3ff;
    color: #fff;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 4px;
}

