        .menu_ico_image-container {
            position: relative;
            display: inline-block;
            /*margin: 20px;*/
            width:100%;
        }

        .menu_ico_main-image {
            width: 500px;
            height: 500px;
            border: 0;
            border-radius: 8px;
            background: #ccc;
        }

        .menu_ico_overlay-icon {
            position: absolute;
            /*top: 90%;*/
            width: 20%;
            /*left:30%;*/
            bottom:10px;
            right:10px;
            height: auto;
            cursor: pointer;
            border: 2px solid white;
            border-radius: 50%;
            font-size: 42px;
            line-height: 24px;
            text-align: center;
            z-index: 10;
        }

        .menu_ico_overlay-icon:hover {
            background: rgba(255,255,255,0.8);
        }

        .menu_ico_context-menu {
            position: absolute;
            height: auto;
            width:42%;
            /*top: 340px;*/
            /*right: 0;*/
            bottom:45px;
            right:40px;
            background: white;
            border-radius: 8px;
            list-style: none;
            margin: 0;
            padding: 8px 0;
            min-width: 140px;
            z-index: 100;
            border: 1px solid #ddd;
            display: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .menu_ico_context-menu li {
            padding: 12px 20px;
            cursor: pointer;
            font-size: 14px;
            color: #333;
            border-bottom: 1px solid #f0f0f0;
        }

        .menu_ico_context-menu li:last-child {
            border-bottom: none;
        }

        .menu_ico_context-menu li:hover {
            background: #4CAF50;
            color: white;
        }

        .menu_ico_modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            opacity: 0.5;
            /*z-index: 500;*/
            z-index: 99;
            display: none;
        }

        .menu_ico_modal-window {
	    position: absolute;
            top: 50%;
            left: 50%;
            width: 300px;
            margin: -100px 0 0 -150px;
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            z-index: 501;
            display: none;
        }

        .menu_ico_modal-title {
            margin: 0 0 15px 0;
            font-size: 18px;
            color: #333;
        }

        .menu_ico_modal-input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            margin-bottom: 15px;
            box-sizing: border-box;
        }

        .menu_ico_modal-buttons {
            text-align: left;
        }

        .menu_ico_modal-btn {
            padding: 8px 16px;
            margin-left: 10px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
        }

        .menu_ico_btn-ok {
            background: #4CAF50;
            color: white;
        }

        .menu_ico_btn-cancel {
            background: #f0f0f0;
            color: #333;
        }

        .menu_ico_btn-ok:hover, .btn-cancel:hover {
            opacity: 0.9;
        }

        .menu_ico_image-title {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 16px;
            font-weight: bold;
            z-index: 5;
            display: none;
        }
