
   
        .todeContent_Menu {
            cursor: move;
            height: fit-content !important;
            border: 1px solid rgba(128, 128, 128, 0.125);
            padding: 10px;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 3px 0px;
            border-radius: 10px;
            background-color: rgb(234, 234, 234);
        }

        .style-36 {
            height: inherit;
            display: flex;
            overflow: hidden;
            align-items: center;
            flex-direction: column;
            justify-content: center;
        }

        .style-35 {
            color: #505050;
            margin: 0;
            font-size: 8px;
            font-weight: normal;
            line-height: 1;
        }

        .button-like-input {
            border: none;
            font-size: 16px;
            color: white;
            border-radius: 5px;
            cursor: pointer;
            text-align: center;
            width: 32px;
            height: 32px;
        }

        .button-like-input:focus {
            outline: none;
            /* box-shadow: 0 0 0 2px rgba(38, 143, 255, 0.5); */
        }

        .full .clr-field button {
            width: 100%;
            height: 100%;
            border-radius: 5px;
        }
 
        .tool-container {
            display: flex;
            /*flex-wrap: wrap;*/
            justify-content: center;
            align-items: flex-start;
            background: transparent;
            border-radius: 1px;
            width: 100%;
            /* Adjust width as needed */
        }

        .logo {
            width: 100%;
            display: flex;
            justify-content: center;
            /* Space between logo and tool buttons */
        }

        .logo img {
            width: 138px;
            background-color: #f2184f;
        }

        .column {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 1px;
        }

        .pencil-tool {
            width: 20px;
            height: 20px;
            background-color: #333;
            border-radius: 50%;
            margin-bottom: 10px;
            transition: width 0.2s, height 0.2s, opacity 0.2s;
        }

        label {
            margin-bottom: 10px;
            font-size: 16px;
            color: #333;
        }

        input[type="range"] {
            -webkit-appearance: none;
            width: 100%;
            margin: 10px 0;
            background: transparent;
        }

        input[type="range"]::-webkit-slider-runnable-track {
            width: 100%;
            height: 8px;
            background: #ddd;
            border-radius: 5px;
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            background: #0073e6;
            cursor: pointer;
            border-radius: 50%;
            border: 2px solid #fff;
            transition: background 0.3s ease;
        }

        input[type="range"]::-webkit-slider-thumb:hover {
            background: #0056b3;
        }

        input[type="color"] {
            border: none;
            padding: 0;
            margin: 10px 0;
            width: 45px;
            height: 45px;
            cursor: pointer;
        }

        .toolbutton {
            background: transparent;
            /* Transparent background */
            color: #4e78a1;
            border: 1px solid #4e78a1;
            margin: 5px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
            font-size: 16px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 45px;
            height: 45px;
        }

        .toolbutton:hover {
            background: lightgray;
            color: #fff;
            transform: scale(1.05);
        }

        .toolbutton.selected {
            background: lightseagreen;
            /* Corporate blue */
            color: #fff;
            /* White text */
            border: 1px solid lightseagreen;
            /* Darker border color */
        }

        .toolbutton:disabled {
            background: transparent;
            color: #b0b0b0;
            border: 1px solid #b0b0b0;
            cursor: not-allowed;
            box-shadow: none;
        }

        .toolbutton i {
            margin: 0;
            font-size: 10px;
        }

        .toolbutton .subtext {
            font-size: 8px;
            color: inherit;
            margin-top: 4px;
            text-transform: capitalize;
        }


        /* Prev and Next Button Styles */
        .nav-container {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .nav-container.left {
            left: 2px;
            /* Adjust distance from the left edge */
        }

        .nav-container.right {
            right: 2px;
            /* Adjust distance from the right edge */
        }

        .toolbutton.nav-button {
            background: transparent;
            color: #008080;
            border: 1px solid #008080;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
            font-size: 14px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-bottom: 10px;
            /* Space between buttons */
        }

        .toolbutton.nav-button:hover {
            background: #008080;
            color: #fff;
            transform: scale(1.05);
        }

        toolbutton.nav-button i {
            margin: 0;
            font-size: 20px;
        }

        .toolbutton.nav-button .subtext {
            font-size: 12px;
            color: inherit;
            margin-top: 4px;
            text-transform: capitalize;
        }


        /* Dropdown container */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-toggle {
            background: transparent;
            color: #4e78a1;
            /* Corporate blue */
            border: 1px solid #4e78a1;
            padding: 12px;
            margin: 5px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
            font-size: 14px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .dropdown-menu1 {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            z-index: 1;
            flex-direction: row;
            /* Change to row for horizontal layout */
            white-space: nowrap;
            /* Prevent wrapping of buttons */
           padding: 10px;
 
        }

        /* Range dropdown specific styling */
        .range-menu {
            width: 200px;
        }

        .range-menu input[type="range"] {
            width: 100%;
            margin: 10px 0;
        }

        .dropdown-menu1 button {
            background: transparent;
            color: #0073e6;
            border: none;
            padding: 10px;
            margin: 0 5px;
            text-align: center;
            flex: none;
            transition: background 0.3s ease, color 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .dropdown-menu1 button:hover {
            background-color: #0073e6;
            color: #fff;
        }

        .dropdown:hover .dropdown-menu1 {
            display: flex;
        }

        .dropdown-menu1 button i {
            margin: 0;
            font-size: 20px;
        }

        .dropdown-menu1 button .subtext {
            font-size: 12px;
            color: inherit;
            margin-top: 4px;
            text-transform: capitalize;
        }


        /* Color dropdown specific styling */
        .color-menu {
            width: 340px !important;
            padding: 5px;
        }

        .color-option {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 2px solid #0073e6;
            cursor: pointer;
            margin: 5px;
            transition: transform 0.2s ease;
        }

        .color-option:hover {
            transform: scale(1.2);
        }
   
        .range-container {}

        .range-input {
            width: 100%;
        }

        .range-value {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            background: #007bff;
            color: #fff;
            padding: 5px;
            border-radius: 4px;
            white-space: nowrap;
            font-size: 10px;
        }
   
        #sizeLinks {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }



        input[type="range"] {
            -webkit-appearance: none;
            /* Remove default styling */
            width: 250px;
            margin: 10px 0;
            background: transparent;
            /* Remove default background */
        }

        input[type="range"]::-webkit-slider-runnable-track {
            width: 100%;
            height: 8px;
            background: #ddd;
            border-radius: 5px;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            /* Remove default styling */
            width: 20px;
            height: 20px;
            background: #007bff;
            /* Stylish thumb color */
            cursor: pointer;
            border-radius: 50%;
            border: 2px solid #fff;
            /* Thumb border for better visibility */
            transition: background 0.3s ease;
        }

        input[type="range"]::-webkit-slider-thumb:hover {
            background: #0056b3;
            /* Darker color on hover */
        }

        input[type="range"]::-moz-range-track {
            width: 100%;
            height: 8px;
            background: #ddd;
            border-radius: 5px;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        input[type="range"]::-moz-range-thumb {
            width: 20px;
            height: 20px;
            background: #007bff;
            cursor: pointer;
            border-radius: 50%;
            border: 2px solid #fff;
            transition: background 0.3s ease;
        }

        input[type="range"]::-moz-range-thumb:hover {
            background: #0056b3;
        }

        input[type="range"]::-ms-track {
            width: 100%;
            height: 8px;
            background: transparent;
            /* Hides the default track */
            border-color: transparent;
            color: transparent;
        }

        input[type="range"]::-ms-fill-lower {
            background: #ddd;
            border-radius: 5px;
        }

        input[type="range"]::-ms-fill-upper {
            background: #ddd;
            border-radius: 5px;
        }

        input[type="range"]::-ms-thumb {
            width: 20px;
            height: 20px;
            background: #007bff;
            cursor: pointer;
            border-radius: 50%;
            border: 2px solid #fff;
            transition: background 0.3s ease;
        }

        input[type="range"]::-ms-thumb:hover {
            background: #0056b3;
        }

        input[type="range"]::-ms-tooltip {
            display: none;
            /* Hide default tooltip */
        }
 
        .todeContent_Menu {
            cursor: move;
            height: fit-content !important;
            border: 1px solid rgba(128, 128, 128, 0.125);
            padding: 10px;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 3px 0px;
            border-radius: 10px;
            background-color: rgb(234, 234, 234);
        }

        .btncontainer-sty {
            height: inherit;
            display: flex;
            overflow: hidden;
            align-items: center;
            flex-direction: column;
            justify-content: center;
        }

        .btncontainer-sty2 {
            color: #505050;
            margin: 0;
            font-size: 8px;
            font-weight: normal;
            line-height: 1;
        }
  
    /* Container for the dropdown */
    .dropdown {
        position: relative;
        display: inline-block;
    }

    /* Dropdown button */
    .dropbtn {
background: transparent;
  color: #4e78a1;
  border: 1px solid #4e78a1;
      
        padding: 10px 16px;
        font-size: 16px;
        
        cursor: pointer;
    }

    /* Dropdown content (hidden by default) */
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
        padding: 15px;
    }

    /* Color options within the dropdown */
    .color-option {
        height: 30px;
        width: 30px;
        margin: 0 5px;
        border: 1px solid #ccc;
        cursor: pointer;
    }

    /* Add border on hover */
    .color-option:hover {
        border: 2px solid #000;
    }

