/**
 * @package   floatingimage
 * @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;
}
