/**
 * @package   floatingimage PRO
 * @copyright (c)2024 WeDevlops Team / WeDevlops.com
 * @license   GNU General Public License version 2 or later
 */
#floating-image-container {
    position: fixed;
    z-index: 1000;
}

#floating-image {
    cursor: grab;
}

#floating-image:active {
    cursor: grabbing;
}

#floating-image-controls {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#floating-image-controls input,
#floating-image-controls button {
    margin: 5px;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

/* Apply Bounce Effect */
#floating-image {
    animation: bounce 2s infinite;
}
