#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(255 124 96 / 58%);
    color: black;
    padding: 20px;
    z-index: 1000;
    text-align: center;
    font-size: 14px;
}

#cookie-banner .cookie-banner-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    line-height: normal;
}

#cookie-banner button {
    background-color: #ff6b77;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    margin-right: 1em;
}

#cookie-banner button:hover {
    background-color: #FF7A41;
}
#cookie-banner a:hover {
    color: #FF7A41;
}