/*
 * 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.
 */

/* Style for the resize canvas button */


/* Style for the dropdown content */
#resizeCanvasOptions {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 1;
    border-radius: 5px;
    margin-top: 10px; 
    top: 100%; /* Position it below the button */
}

#resizeCanvasOptions label,
#resizeCanvasOptions select,
#resizeCanvasOptions input,
#resizeCanvasOptions button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

#resizeCanvasOptions button {
    background: linear-gradient(90deg, #FF6F00 0%, #FFA726 100%);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#resizeCanvasOptions button:hover {
   background: linear-gradient(90deg, #e65c00 0%, #f79535 100%);
}
