:root
{
    --bs-font-sans-serif: "Comfortaa", sans-serif !important;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    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: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

#cookie-banner button:hover {
    background-color: #0056b3;
}