.floating-cookies-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.floating-cookies-icon:hover {
    background-color: #ffffff;
}

.floating-cookies-icon i {
    font-size: 28px;
}