#clChatEnhancer,
.cl-nav-btn,
.cl-nav-panel {
  display: none !important;
}

.cl2-wrap {
  width: min(980px, calc(100vw - 18px));
  margin: 10px auto 10px;
  background: rgba(2, 6, 23, .96);
  border: 1px solid rgba(148, 163, 184, .30);
  border-radius: 20px;
  padding: 10px;
  color: #e5e7eb;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  box-shadow: 0 16px 42px rgba(0,0,0,.30);
  position: relative;
  z-index: 20;
}

.cl2-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.cl2-btn {
  border: 1px solid rgba(148, 163, 184, .35);
  background: #111827;
  color: #e5e7eb;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

.cl2-btn:hover,
.cl2-btn:focus {
  border-color: #60a5fa;
  outline: none;
}

.cl2-plus {
  width: 42px;
  height: 42px;
  padding: 0;
  background: #2563eb;
  color: white;
  font-size: 24px;
  font-weight: 700;
}

.cl2-status {
  font-size: 12px;
  color: #94a3b8;
  margin-left: auto;
}

.cl2-pop {
  display: none;
  margin-top: 10px;
  background: #020617;
  border: 1px solid rgba(148,163,184,.35);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 16px 44px rgba(0,0,0,.35);
}

.cl2-pop.open {
  display: block;
}

.cl2-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.cl2-item {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(148,163,184,.24);
  background: #0f172a;
  color: #e5e7eb;
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
  font-size: 14px;
}

.cl2-item:hover {
  border-color: #60a5fa;
  background: #111827;
}

.cl2-muted {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.25;
}

.cl2-list {
  display: grid;
  gap: 8px;
  max-height: 280px;
  overflow: auto;
}

.cl2-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.cl2-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  background: #0f172a;
  border: 1px solid rgba(148,163,184,.24);
  color: #cbd5e1;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
}

.cl2-x {
  color: #fca5a5;
  cursor: pointer;
  font-weight: 700;
}

.cl2-global {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
}

.cl2-global-btn {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.35);
  background: #2563eb;
  color: white;
  font: 700 24px system-ui;
  box-shadow: 0 14px 34px rgba(0,0,0,.40);
  cursor: pointer;
}

.cl2-global-panel {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 78px;
  width: min(340px, calc(100vw - 32px));
  background: #020617;
  color: #e5e7eb;
  border: 1px solid #334155;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 22px 58px rgba(0,0,0,.50);
}

.cl2-global-panel.open {
  display: grid;
  gap: 6px;
}

.cl2-global-link {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border-radius: 13px;
  color: #e5e7eb;
  text-decoration: none;
  background: #0f172a;
  border: 1px solid rgba(148,163,184,.20);
}

.cl2-global-link:hover {
  border-color: #60a5fa;
  background: #111827;
}

@media (max-width: 680px) {
  .cl2-wrap {
    width: calc(100vw - 12px);
    margin: 6px auto;
    padding: 9px;
    border-radius: 16px;
  }

  .cl2-bar {
    gap: 6px;
  }

  .cl2-btn {
    padding: 9px 10px;
    font-size: 13px;
  }

  .cl2-plus {
    width: 40px;
    height: 40px;
    font-size: 23px;
  }

  .cl2-status {
    width: 100%;
    margin-left: 0;
  }

  .cl2-grid {
    grid-template-columns: 1fr;
  }

  .cl2-pop {
    max-height: 55vh;
    overflow: auto;
  }

  .cl2-global {
    right: 12px;
    bottom: 12px;
  }

  .cl2-global-panel {
    right: 12px;
    bottom: 74px;
    width: calc(100vw - 24px);
  }
}
