/*
 * Copyright (c) 2024 Biovisuals Private Limited
 * All rights reserved.
 *
 * This software is the confidential and proprietary information of Biovisuals Private Limited.
 * You shall not disclose such Confidential Information and shall use it only
 * in accordance with the terms of the license agreement you entered into with Biovisuals Private Limited.
 */

/* zoom-slider.css */

/* 🌟 Floating Zoom Control */
.floating-zoom {
    position: fixed;
    bottom: 20px;
    right: 100px ;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

/* 🔹 Zoom Buttons */
.floating-zoom button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s ease-in-out;
}

.floating-zoom button:hover {
    transform: scale(1.1);
}

/* 🔹 Zoom Slider */
#zoomSlider {
    width: 100px;
    height: 4px;
    cursor: pointer;
    accent-color: #ffcc00;
}

/* 🔹 Zoom Percentage */
#zoomPercentage {
    color: white;
    font-size: 12px;
    font-weight: bold;
}
