
    .openMenuBtn {
      padding: 0px 0px;
      cursor: none;
      border: none;
      background: transparent;      
    }

    /* Window container */
    #windowContainer {
      position: relative;
      width: 100%;
      margin-top: 0px;
    }
    /* Assist window styles */
    .assistWindow {
      position: absolute;
      width: 320px;
      height: 390px;
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.7);
      border-radius: 15px;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
      overflow: hidden;
      touch-action: none;
      z-index: 111;
    }
    .assistWindow .header {
      background: rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(4px);
      color: #fff;
      padding: 2px 8px 2px 8px;
      cursor: move;
      user-select: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 0px;
      border-radius: 15px 15px 0 0;
    }
    .assistWindow .header .title {
      font-size: 12px;
      font-weight: 600;
      display: flex;
      align-items: center;
    }
    .assistWindow .header .title img.favicon {
      width: 25px;
      height: 25px;
      vertical-align: middle;
      margin-right: 3px;
      background: white;
      border-radius: 50%;
    }
    .assistWindow .header .window-controls img {
      width: 25px;
      height: 25px;
      margin-left: 2px;
      cursor: pointer;
      transition: opacity 1.9s;
      background: rgba(0,0,0,0.3);
      padding: 3px;
      border-radius: 8px 0 8px 0;
      border: 1px solid rgba(255,255,255,0.7);
    }
    .assistWindow .header .window-controls img:hover {
      opacity: 0.8;
    }
    .assistWindow .content {
      width: 100%;
      height: calc(100% - 30px);
      overflow: auto;
      background: rgba(0,0,0,0.3);
      border-radius: 0 0 15px 15px;
    }
    .assistWindow .content iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    /* Resize handles */
    .resize-handle {
      position: absolute;
      width: 22px;
      height: 22px;
      background: rgba(0, 0, 0, 0.15);
      border-radius: 50%;
      z-index: 1000001;
      touch-action: none;      
    }
    .resize-handle.nw { top: -6px; left: -6px; cursor: nwse-resize; }
    .resize-handle.ne { top: -6px; right: -6px; cursor: nesw-resize; }
    .resize-handle.sw { bottom: -6px; left: -6px; cursor: nesw-resize; }
    .resize-handle.se { bottom: -6px; right: -6px; cursor: nwse-resize; }
    /* Menu list styles */
    .menuList {
      list-style: none;
      padding: 17px;
      margin: 0;
    }
    
    
    
    .menuList li {
      padding: 10px;
      margin: 20px 0;
      background: linear-gradient(135deg, black,rgba(255,255,255,0.4));
      border-radius: 0 35px 0 35px;
      cursor: none;
      display: flex;
      align-items: center;
      color: rgba(100, 255, 255, 0.8);
      text-shadow: 0px 0px 3px #00ffab;
      transition: transform 1s;
      border: 2px solid #00ffc0;
      transition: border-radius 2s;


    }
    .menuList li:hover {
      color: rgba(255, 255, 255, 0.3);
      text-shadow: 0px 0px 2px #ff0088;
      animation: borderGlow 5s infinite;
      border-radius: 35px 0 35px 0;
    }
    
    .menuList li img {
      margin-right: 10px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: white;
    }
    
    
    @keyframes borderGlow {
            0% {
                border: 2px solid #ff4081;
                box-shadow: 0 0 10px rgba(255, 64, 129, 0.5);
            }
            25% {
                border: 2px solid #448aff;
                box-shadow: 0 0 10px rgba(68, 138, 255, 0.5);
            }
            50% {
                border: 2px solid #00e676;
                box-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
            }
            75% {
                border: 2px solid #ffeb3b;
                box-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
            }
            100% {
                border: 2px solid #ff4081;
                box-shadow: 0 0 10px rgba(255, 64, 129, 0.5);
            }
        }