/* Cookie Icon Styles */
.cookie-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease;
}

.cookie-icon:hover {
    transform: scale(1.1);
}

.cookie-icon img {
    width: 30px;
    height: 30px;
}

/* Hide cookie icon if consent not given yet */
.no-consent .cookie-icon {
    display: none;
}