#linq2it-assistant-launcher {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0b5ed7,#2563eb);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99998;
  color: #fff;
  font-size: 26px;
  transition: .25s;
}

#linq2it-assistant-launcher:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

#linq2it-assistant {
  position: fixed;
  bottom: 95px;
  right: 22px;
  width: 360px;
  max-width: calc(100vw - 30px);
  background: rgba(12,18,30,.96);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  color: #fff;
  overflow: hidden;
  z-index: 99999;
  display: none;
  font-family: Manrope, system-ui, sans-serif;
}

#linq2it-assistant header {
  padding: 16px 18px;
  font-weight: 600;
  background: linear-gradient(135deg,#0b5ed7,#1d4ed8);
}

#linq2it-assistant .body {
  padding: 16px;
  font-size: .95rem;
  line-height: 1.5;
}

#linq2it-assistant .msg {
  background: rgba(255,255,255,.08);
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 10px;
}

#linq2it-assistant .actions button {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 8px;
  font-weight: 600;
  background: #0b5ed7;
  color: #fff;
  cursor: pointer;
}

#linq2it-assistant .actions button.secondary {
  background: rgba(255,255,255,.12);
}

/* =========================
   IT SCORE CIRCLE (DYNAMIC)
========================= */

#linq2it-assistant .it-circle {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;

  /* ⚠️ NO PERCENTAGES HERE */
  background: #1e293b;

  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

#linq2it-assistant .it-circle-inner {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(255,255,255,.08);
}

#linq2it-assistant .it-circle::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}

/* Fix result text contrast */
#linq2it-assistant strong,
#linq2it-assistant p,
#linq2it-assistant .msg {
  color: #ffffff;
}
