 /* 独立的导航栏样式 - 不受全局样式影响 */
     .custom-navbar {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         background: white;
         z-index: 1000;
         box-shadow: 0 2px 10px rgba(0,0,0,0.1);
         padding: 10px 0;
     }
     
     .custom-navbar .navbar-container {
         max-width: 1200px;
         margin: 0 auto;
         padding: 0 15px;
         display: grid;
         grid-template-columns: auto 1fr auto;
         align-items: center;
     }
     
    .custom-navbar .logo {
        display: flex;
        align-items: center;
        padding: 0px 0;
        background: #ffffff;
        gap: 15px;
    }
    
    .custom-navbar .nav-logo {
        width: 36px;
        height: 36px;
        background: #2B8DFC;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 8px rgba(43, 141, 252, 0.3);
    }
    
    .custom-navbar .nav-logo i {
        color: white;
        font-size: 18px;
    }
     
     /* 添加圆形头像样式 */
     .custom-navbar .logo .avatar {
         width: 45px;
         height: 45px;
         border-radius: 50%;
         background: #3370FF;
         margin-right: 15px;
         display: flex;
         align-items: center;
         justify-content: center;
         overflow: hidden;
         border: 2px solid white;
         box-shadow: 0 2px 5px rgba(0,0,0,0.1);
     }
     
    .custom-navbar .logo .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
     
     .custom-navbar .logo .avatar .icon {
         color: white;
         font-size: 1.5rem;
     }
     
     .custom-navbar .logo h1 {
         font-size: 1.8rem;
         color: #2B8DFC;
         font-weight: 700;
         font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
     }
     
     /* 导航菜单居中容器 */
     .custom-navbar .nav-center {
         display: flex;
         justify-content: center;
         padding: 0 10px;
     }
     
     .custom-navbar .category-nav {
         display: flex;
         overflow-x: auto;
         scrollbar-width: none;
         -ms-overflow-style: none;
         padding: 0 15px;
         background: #f8f9fa;
         border-radius: 30px;
         box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
         max-width: 100%;
     }
     
     .custom-navbar .category-nav::-webkit-scrollbar {
         display: none;
     }
     
     .custom-navbar .category-item {
         flex: 0 0 auto;
         padding: 8px 20px;
         margin: 5px;
         background: #fff;
         border-radius: 20px;
         font-size: 0.9rem;
         cursor: pointer;
         box-shadow: 0 2px 5px rgba(0,0,0,0.05);
         transition: all 0.3s ease;
         white-space: nowrap;
         font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
         text-decoration: none;
         color: #000000;
         border: none;
     }
     
     .custom-navbar .category-item.active {
         background: #2B8DFC;
         color: white;
     }
     
     .custom-navbar .category-item:hover {
         transform: translateY(-2px);
         box-shadow: 0 4px 8px rgba(0,0,0,0.1);
         background: #f0f0f0;
     }
     
    /* 响应式设计 */
    @media (max-width: 768px) {
        .custom-navbar .navbar-container {
            flex-direction: column;
            align-items: stretch;
            gap: 15px;
        }
        
        .custom-navbar .nav-center {
            order: 3;
            width: 100%;
            margin-top: 10px;
        }
        
        .custom-navbar .category-nav {
            padding: 5px;
            max-width: 100%;
            margin: 0;
        }
        
        .game-icon {
            width: 50px;
            height: 50px;
        }
        
        .game-title {
            font-size: 1rem;
        }
    }
    
    @media (max-width: 480px) {
        .custom-navbar .logo h1 {
            font-size: 1.5rem;
        }
        
        .game-item {
            padding: 12px;
        }
        
        .game-icon {
            width: 45px;
            height: 45px;
        }
        
        .custom-navbar .category-item {
            padding: 8px 15px;
            margin: 3px;
            font-size: 0.85rem;
        }
        
        .custom-navbar .logo .avatar {
            width: 40px;
            height: 40px;
            margin-right: 10px;
        }
    }
    /* 全局样式 */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Microsoft YaHei", sans-serif;
    }
    
    body {
      background: linear-gradient(to bottom, #87ceeb, #e0f7fa);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      color: #2e7d32;
      transition: background 1.5s ease;
      padding-top: 90px; /* 为顶部导航栏留出空间 */
    }
    
    /* 网址导航工具样式 */
    .nav-container {
      width: 100%;
      max-width: 1400px;
      display: flex;
      margin: 0px auto;
      gap: 20px;
      padding: 0 15px;
    }
    
    /* 左侧分类面板 */
    .categories-panel {
      width: 250px;
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      padding: 20px;
      position: sticky;
      top: 100px;
      max-height: calc(100vh - 130px);
      overflow-y: auto;
    }
    

    
    .categories-panel h2 {
      color: #3370FF;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid #f0f0f0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .category-list {
      list-style: none;
    }
    
    .category-item-li {
      padding: 12px 15px;
      border-radius: 10px;
      margin-bottom: 8px;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #000000;
    }
    
    .category-item-li:hover {
      background: #f0f7ff;
    }
    
    .category-item-li.active {
      background: #2B8DFC;
      color: white;
      font-weight: bold;
    }
    
    .category-actions {
      display: flex;
      gap: 8px;
      opacity: 0;
      transition: opacity 0.3s;
    }
    
    .category-item-li:hover .category-actions {
      opacity: 1;
    }
    
    .category-actions i {
      cursor: pointer;
      padding: 3px;
      border-radius: 50%;
    }
    
    .category-actions i:hover {
      background: transparent;
    }
    
    .category-more-menu {
      display: none;
      position: absolute;
      background: white;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      padding: 8px 0;
      z-index: 10;
      min-width: 120px;
    }
    
    .category-more-menu.active {
      display: block;
    }
    
    .category-more-menu div {
      padding: 8px 16px;
      cursor: pointer;
      transition: background 0.2s;
    }
    
    .category-more-menu div:hover {
      background: #f0f7ff;
    }
    
    /* 拖拽排序样式 */
    .sortable-item {
      cursor: move;
      transition: all 0.2s ease;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }
    
    .sortable-item:hover {
      background: #f8f9fa;
    }
    
    .sortable-item.dragging {
      opacity: 0.5;
      transform: rotate(2deg);
      z-index: 1000;
    }
    
    .sortable-item.drag-over {
      border-top: 2px solid #007bff;
      transform: translateY(-2px);
    }
    
    .drag-handle {
      cursor: grab;
      color: #6c757d;
      margin-right: 8px;
      padding: 4px;
    }
    
    .drag-handle:active {
      cursor: grabbing;
    }
    
    .sortable-item:hover .drag-handle {
      color: #007bff;
    }
    
    .category-more-menu .delete-option {
      color: #e74c3c;
    }
    
    .add-category-btn {
      background: white;
      color: #2B8CFB;
      border: 2px solid #2B8CFB;
      padding: 10px 15px;
      border-radius: 50px;
      cursor: pointer;
      font-weight: bold;
      margin-top: 10px;
      width: 100%;
      transition: all 0.3s;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
    }
    
    .add-category-btn:hover {
      background: #2B8CFB;
      color: white;
      transform: translateY(-2px);
    }
    
    /* 右侧网址内容区域 */
    .content-panel {
      flex: 1;
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      padding: 25px;
      min-height: 400px;
    }
    
    .category-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
      border-bottom: 2px solid #f0f0f0;
      padding-bottom: 15px;
    }
    
    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .bookmark-controls {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
      padding: 10px;
      background: #f8f9fa;
      border-radius: 8px;
    }
    
    .bookmark-card.draggable {
      cursor: move;
      transition: all 0.2s ease;
    }
    
    .bookmark-card.drag-over {
      border: 2px dashed #007bff;
      background-color: #f8f9ff;
      transition: none; /* 禁用过渡动画避免闪动 */
    }
    
    .sort-mode .bookmark-card {
      position: relative;
    }
    
    .bookmark-card.drag-over-top {
      border-top: 3px solid #007bff;
      margin-top: 2px;
    }
    
    .bookmark-card.drag-over-bottom {
      border-bottom: 3px solid #007bff;
      margin-bottom: 2px;
    }
    
    .bookmark-card.dragging {
      opacity: 0.5;
      transform: rotate(5deg);
      z-index: 1000;
    }
    
    .bookmark-card .drag-handle {
      position: absolute;
      top: 8px;
      right: 8px;
      opacity: 0;
      transition: opacity 0.2s ease;
      cursor: grab;
      color: #666;
      font-size: 14px;
    }
    
    .bookmark-card:hover .drag-handle {
      opacity: 0.6;
    }
    
    .sort-mode .bookmark-card .drag-handle {
      opacity: 1;
    }
    
    .bookmark-card:active .drag-handle {
      cursor: grabbing;
    }
    
    .category-title {
      font-size: 1.8rem;
      color: #000000;
      font-weight: bold;
    }
    
    .add-bookmark-btn {
      background: white;
      color: #2B8CFB;
      border: 2px solid #2B8CFB;
      padding: 10px 20px;
      border-radius: 50px;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.3s;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
    }
    
    .add-bookmark-btn:hover {
      background: #2B8CFB;
      color: white;
      transform: translateY(-2px);
    }
    
    .bookmarks-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 15px;
    }
    
    .bookmark-card {
      background: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0,0,0,0.08);
      transition: all 0.3s;
      height: 100%;
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 8px;
      gap: 10px;
      cursor: pointer;
      position: relative;
    }
    
    /* 取消悬停效果 */
    .bookmark-card:hover {
      transform: none;
      box-shadow: 0 3px 10px rgba(0,0,0,0.08);
      background: #F0F2F5;
    }
    
    .bookmark-avatar {
      width: 50px;
      height: 50px;
      object-fit: cover;
      padding: 5px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      /* 确保容器本身也有硬件加速 */
      will-change: transform;
      transform: translateZ(0);
    }
    
    .bookmark-avatar img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: opacity 0.3s ease;
      /* 确保图标在高分辨率下清晰显示 */
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
      /* 防止图标模糊 - 使用最佳渲染策略 */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* 图像渲染优化 - 优先保持清晰度，避免像素化 */
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: pixelated;
      /* 确保图标清晰但不过度处理 */
      filter: contrast(1.02) brightness(1.01) saturate(1.05);
      /* 强制硬件加速 */
      will-change: transform;
      /* 隐藏破损图片图标 */
      font-size: 0;
      color: transparent;
    }
    
    /* 高分辨率屏幕优化 */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
      .bookmark-avatar img {
        /* 在高DPI屏幕上使用更精细的渲染 */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: -moz-crisp-edges;
        image-rendering: auto;
        /* 在高DPI屏幕上减少滤镜强度，保持自然 */
        filter: contrast(1.01) brightness(1.005) saturate(1.02);
        /* 确保在高DPI屏幕上保持清晰 */
        transform: translateZ(0) scale(1);
      }
    }
    
    /* 超高分辨率屏幕优化 */
    @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 288dpi) {
      .bookmark-avatar img {
        /* 在超高DPI屏幕上使用最精细的渲染 */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: -moz-crisp-edges;
        -ms-interpolation-mode: nearest-neighbor;
        image-rendering: crisp-edges;
        filter: contrast(1.02) brightness(1.005) saturate(1.03);
        /* 确保在超高DPI屏幕上保持清晰 */
        transform: translateZ(0) scale(1);
      }
    }
    
    /* 确保图标在容器中居中显示 */
    .bookmark-avatar {
      background: transparent;
      border-radius: 8px;
      border: none;
    }
    
    .bookmark-content {
      flex: 1;
      min-width: 0;
    }
    
    .bookmark-name {
      font-size: 1rem;
      font-weight: bold;
      color: #000000;
      margin-bottom: 3px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .bookmark-url {
      font-size: 0.75rem;
      color: #666;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      white-space: normal;
      line-height: 1.4;
      min-height: calc(1em * 1.4 * 2);
    }

    /* 悬浮提示：显示完整网址介绍 */
    .description-tooltip {
      position: fixed;
      max-width: 420px;
      background: #ffffff;
      color: #333;
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      padding: 10px 12px;
      font-size: 0.85rem;
      line-height: 1.5;
      z-index: 2000;
      display: none;
      pointer-events: none;
      word-break: break-word;
      white-space: normal;
    }
    
    /* 三点操作按钮（右上角） */
    .bookmark-actions {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(255,255,255,0.95);
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.2s ease;
      z-index: 2;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }
    .bookmark-card:hover .bookmark-actions { opacity: 1; }
    
    /* 隐藏悬停访问按钮 */
    .visit-btn { display: none; }
    
    /* 登录按钮样式 */
    .login-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      background: white;
      color: #2B8DFC;
      border: 2px solid #2B8DFC;
      padding: 8px 16px;
      border-radius: 50px;
      cursor: pointer;
      font-size: 0.9rem;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    
    .login-btn:hover {
      background: #f0f8ff;
      border-color: #2B8DFC;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(43, 141, 252, 0.3);
    }
    
    .login-btn i {
      color: #2B8DFC;
      font-size: 1rem;
    }
    
    /* 模态框样式 */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1001;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
    }
    
    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    
    .modal {
      background: white;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      width: 100%;
      max-width: 500px;
      transform: translateY(20px);
      transition: transform 0.3s;
    }
    
    .modal-overlay.active .modal {
      transform: translateY(0);
    }
    
    .modal-header {
      padding: 20px;
      border-bottom: 1px solid #eee;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .modal-title {
      font-size: 1.3rem;
      font-weight: bold;
      color: #3370FF;
    }
    
    .close-modal {
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #888;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .close-modal:hover {
      background: #f5f5f5;
      color: #333;
    }
    
    .modal-body {
      padding: 20px;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: bold;
      color: #555;
    }
    
    .form-control {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 1rem;
      transition: all 0.3s;
    }
    
    .form-control:focus {
      border-color: #3370FF;
      box-shadow: 0 0 0 3px rgba(51, 112, 255, 0.15);
      outline: none;
    }
    
    .modal-footer {
      padding: 15px 20px;
      background: #f9f9f9;
      border-radius: 0 0 15px 15px;
      text-align: right;
      display: flex;
      justify-content: flex-end;
      gap: 10px;
    }
    
    .btn {
      padding: 10px 20px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.3s;
      border: none;
      font-size: 1rem;
      writing-mode: horizontal-tb !important;
      text-orientation: mixed !important;
      direction: ltr !important;
      unicode-bidi: normal !important;
      white-space: nowrap;
    }
    
    .btn-primary {
      background: #3370FF;
      color: white;
    }
    
    .btn-primary:hover {
      background: #2a5ad5;
    }
    
    .btn-secondary {
      background: #e74c3c;
      color: white;
    }
    
    .btn-secondary:hover {
      background: #c0392b;
    }
    
    .btn-danger {
      background: #e74c3c;
      color: white;
    }
    
    .btn-danger:hover {
      background: #c0392b;
    }
    
    .btn-outline {
      background: transparent;
      color: #3370FF;
      border: 2px solid #3370FF;
    }
    
    .btn-outline:hover {
      background: #3370FF;
      color: white;
    }
    
    .btn-outline.loading i {
      animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    
    .empty-state {
      text-align: center;
      padding: 40px 0;
      color: #888;
    }
    
    .empty-state i {
      font-size: 4rem;
      margin-bottom: 20px;
      color: #e0e0e0;
    }
    
    .empty-state p {
      font-size: 1.1rem;
      max-width: 500px;
      margin: 0 auto;
      line-height: 1.6;
    }
    
    /* 微信登录模态框 */
    .wechat-login-modal .modal {
      text-align: center;
      padding: 30px;
    }
    
    .qrcode-container {
      margin: 20px 0;
      display: flex;
      justify-content: center;
    }
    
    .qrcode {
      width: 200px;
      height: 200px;
      background: #f8f8f8;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #eee;
      border-radius: 8px;
    }
    
    .qrcode i {
      font-size: 100px;
      color: #3370FF;
    }
    
    .wechat-login-modal p {
      color: #666;
      margin: 15px 0;
      font-size: 1rem;
    }
    
    @media (max-width: 900px) {
      .nav-container {
        flex-direction: column;
      }
      
      .categories-panel {
        width: 100%;
        position: static;
        max-height: none;
      }
    }
    
    @media (max-width: 600px) {
      .bookmarks-container {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      }
      
      .modal {
        width: 95%;
      }
      
      .qrcode {
        width: 180px;
        height: 180px;
      }
      
      .category-actions {
        opacity: 1;
      }
    }
    
    .context-menu {
      position: absolute;
      background: white;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      padding: 8px 0;
      z-index: 1002;
      min-width: 150px;
    }
    
    .context-item {
      padding: 8px 16px;
      cursor: pointer;
      transition: background 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .context-item:hover {
      background: #f0f7ff;
    }
    
    .context-item i {
      width: 16px;
      text-align: center;
    }

    /* 悬浮按钮样式 */
    .floating-buttons {
      position: fixed;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 999;
      opacity: 1;
    }

    .floating-btn {
      width: 50px;
      height: 50px;
      background: #ffffff;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
      position: relative;
      border: 1px solid #f0f0f0;
      opacity: 1;
    }

    .floating-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

    .floating-btn i {
      font-size: 18px;
      color: #3370FF;
      margin-bottom: 2px;
    }

    .floating-btn span {
      font-size: 10px;
      color: #3370FF;
      font-weight: 500;
      line-height: 1;
    }

    /* 悬浮提示框样式 */
    .floating-tooltip {
      position: absolute;
      right: 60px;
      top: 50%;
      transform: translateY(-50%);
      background: white;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      border: 1px solid #e0e0e0;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      white-space: nowrap;
      z-index: 1000;
    }

    .floating-tooltip::after {
      content: '';
      position: absolute;
      right: -8px;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-left: 8px solid white;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
    }

    .floating-btn:hover .floating-tooltip {
      opacity: 1;
      visibility: visible;
    }

    .floating-tooltip h4 {
      margin: 0 0 8px 0;
      color: #333;
      font-size: 14px;
      font-weight: 600;
    }

    .floating-tooltip p {
      margin: 0;
      color: #666;
      font-size: 12px;
      line-height: 1.4;
    }

    .floating-tooltip img {
      max-width: 120px;
      height: auto;
      border-radius: 4px;
      margin-bottom: 8px;
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
      .floating-buttons {
        right: 10px;
        gap: 10px;
      }
      
      .floating-btn {
        width: 45px;
        height: 45px;
      }
      
      .floating-btn i {
        font-size: 16px;
      }
      
      .floating-btn span {
        font-size: 9px;
      }
      
      .floating-tooltip {
        right: 55px;
        padding: 12px 15px;
      }
    }