/* AiOps Assessment Frontend v1.3 — Full-page side drawer */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@300;400;500;700&display=swap');

/* ── Category Cards (page content) ────────────────────────── */
.aiops-categories-wrap { font-family: 'DM Sans', sans-serif; margin: 32px 0; }

.aiops-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.aiops-cat-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.22s ease;
  cursor: pointer;
  position: relative;
}

.aiops-cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--cat-color, #0073e6);
}

.aiops-cat-card:hover {
  border-color: var(--cat-color, #0073e6);
  box-shadow: 0 8px 28px rgba(0,0,0,0.11);
  transform: translateY(-2px);
}

.aiops-cat-card-inner {
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.aiops-cat-icon { font-size: 32px; line-height: 1; }

.aiops-cat-name {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: #0f1b2d;
  margin: 0;
  line-height: 1.3;
}

.aiops-cat-desc { font-size: 13px; color: #6b7280; line-height: 1.55; margin: 0; }

.aiops-cat-meta { display: flex; flex-direction: column; gap: 3px; font-size: 11px; color: #9ca3af; }

.aiops-start-btn {
  margin-top: 4px;
  background: var(--cat-color, #0073e6);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: filter 0.15s, transform 0.15s;
}

.aiops-start-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════════
   DRAWER — Appended to document.body so theme can't clip it
   Full-height right-side panel, always scrollable
   ═══════════════════════════════════════════════════════════════ */

/* Overlay (dim background) */
#aiops-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 30, 0.65);
  z-index: 2147483646; /* max safe z-index */
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

#aiops-drawer-overlay.aiops-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer panel */
#aiops-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 560px;
  background: #fff;
  z-index: 2147483647; /* absolute max */
  display: flex;
  flex-direction: column;
  /* Start off-screen to the right */
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 48px rgba(0,0,0,0.22);
  /* Completely isolated from page fonts/resets */
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #1a1a2e;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

#aiops-drawer.aiops-visible {
  transform: translateX(0);
}

/* Reset everything inside the drawer */
#aiops-drawer *, #aiops-drawer *::before, #aiops-drawer *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#aiops-drawer p   { margin: 0; padding: 0; }
#aiops-drawer h1,
#aiops-drawer h2,
#aiops-drawer h3  { margin: 0; padding: 0; border: none; background: none; }
#aiops-drawer button { font-family: inherit; line-height: 1; }
#aiops-drawer input,
#aiops-drawer textarea,
#aiops-drawer select { font-family: inherit; font-size: 14px; }

/* ── Drawer Header ─────────────────────────────────────────── */
#aiops-drawer .ad-head {
  padding: 14px 20px;
  background: linear-gradient(135deg, #0f1b2d 0%, #1e3a5f 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

#aiops-drawer .ad-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

#aiops-drawer .ad-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #00c4ff, #0073e6);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

#aiops-drawer .ad-logo-name {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}

#aiops-drawer .ad-logo-cat {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  margin-top: 1px;
}

#aiops-drawer .ad-close {
  background: rgba(255,255,255,0.12);
  border: none;
  color: rgba(255,255,255,0.8);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}

#aiops-drawer .ad-close:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* ── Progress Bar ──────────────────────────────────────────── */
#aiops-drawer .ad-progress {
  padding: 9px 20px 8px;
  background: #f8fafc;
  border-bottom: 1px solid #e8ecf0;
  flex-shrink: 0;
}

#aiops-drawer .ad-progress-track {
  height: 5px;
  background: #e5e7eb;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 5px;
}

#aiops-drawer .ad-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0073e6, #00c4ff);
  border-radius: 99px;
  transition: width 0.55s ease;
  min-width: 3px;
}

#aiops-drawer .ad-progress-label {
  font-size: 11px;
  color: #9ca3af;
}

/* ── Scrollable body — the ONLY scroll region ──────────────── */
#aiops-drawer .ad-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px 24px 16px;
  min-height: 0; /* critical flex fix */
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* ── Footer (answer + submit) — always pinned to bottom ─────── */
#aiops-drawer .ad-foot {
  padding: 12px 20px 18px;
  border-top: 1px solid #eef1f5;
  background: #fff;
  flex-shrink: 0;
}

#aiops-drawer .ad-answer-area { margin-bottom: 10px; }

#aiops-drawer .ad-submit {
  width: 100%;
  background: linear-gradient(135deg, #0073e6, #005bb5);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  letter-spacing: 0.2px;
}

#aiops-drawer .ad-submit:hover {
  background: linear-gradient(135deg, #005bb5, #004080);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(0,115,230,0.3);
}

#aiops-drawer .ad-submit:disabled {
  opacity: 0.6;
  transform: none;
  cursor: not-allowed;
  box-shadow: none;
}

/* ── Loading ───────────────────────────────────────────────── */
#aiops-drawer .ad-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 48px 24px;
  color: #6b7280;
  min-height: 200px;
}

#aiops-drawer .ad-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e5e7eb;
  border-top-color: #0073e6;
  border-radius: 50%;
  animation: ad-spin 0.8s linear infinite;
  flex-shrink: 0;
}

@keyframes ad-spin { to { transform: rotate(360deg); } }

#aiops-drawer .ad-loading p {
  font-size: 14px;
  text-align: center;
  animation: ad-pulse 1.5s ease-in-out infinite;
}

@keyframes ad-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

/* ── Question ──────────────────────────────────────────────── */
#aiops-drawer .ad-question-wrap {
  animation: ad-in 0.25s ease;
}

@keyframes ad-in {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}

#aiops-drawer .ad-phase-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 20px;
  background: #e0f2fe;
  color: #0369a1;
  margin-bottom: 10px;
}

#aiops-drawer .ad-phase-badge.data_collection { background: #dcfce7; color: #166534; }

#aiops-drawer .ad-q-num {
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 7px;
}

#aiops-drawer .ad-q-text {
  font-family: 'DM Serif Display', serif;
  font-size: 21px;
  color: #0f1b2d;
  line-height: 1.4;
  margin-bottom: 22px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  display: block;
}

/* ── Open text answer ──────────────────────────────────────── */
#aiops-drawer .ad-open textarea {
  width: 100%;
  min-height: 110px;
  max-height: 220px;
  padding: 13px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #1a1a2e;
  resize: vertical;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  line-height: 1.65;
  display: block;
  background: #fff;
}

#aiops-drawer .ad-open textarea:focus {
  border-color: #0073e6;
  box-shadow: 0 0 0 3px rgba(0,115,230,0.1);
}

/* ── MCQ ───────────────────────────────────────────────────── */
#aiops-drawer .ad-mcq { display: flex; flex-direction: column; gap: 8px; }

#aiops-drawer .ad-mcq-opt {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 14px;
  color: #374151;
  background: #fff;
  user-select: none;
}

#aiops-drawer .ad-mcq-opt:hover { border-color: #0073e6; background: #f0f7ff; }

#aiops-drawer .ad-mcq-opt.selected {
  border-color: #0073e6;
  background: #e0f2fe;
  color: #0f1b2d;
  font-weight: 600;
}

#aiops-drawer .ad-radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

#aiops-drawer .ad-mcq-opt.selected .ad-radio {
  border-color: #0073e6;
  background: #0073e6;
}

#aiops-drawer .ad-mcq-opt.selected .ad-radio::after {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
}

/* ── Scale ─────────────────────────────────────────────────── */
#aiops-drawer .ad-scale { padding: 4px 0; }

#aiops-drawer .ad-scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 12px;
}

#aiops-drawer .ad-scale-input {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 6px;
  background: #e5e7eb;
  border-radius: 99px;
  outline: none;
  cursor: pointer;
}

#aiops-drawer .ad-scale-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #0073e6;
  box-shadow: 0 2px 8px rgba(0,115,230,0.4);
  cursor: pointer;
}

#aiops-drawer .ad-scale-val {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #0073e6;
  margin-top: 10px;
  font-family: 'DM Serif Display', serif;
}

/* ── Yes/No ────────────────────────────────────────────────── */
#aiops-drawer .ad-yesno { display: flex; gap: 12px; }

#aiops-drawer .ad-yesno-btn {
  flex: 1;
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.15s;
  color: #374151;
}

#aiops-drawer .ad-yesno-btn:hover,
#aiops-drawer .ad-yesno-btn.selected {
  border-color: #0073e6;
  background: #e0f2fe;
  color: #0073e6;
}

/* ── Report ────────────────────────────────────────────────── */
#aiops-drawer .ad-report { animation: ad-in 0.3s ease; }

#aiops-drawer .ad-report-header { text-align: center; padding: 8px 0 20px; }
#aiops-drawer .ad-report-icon   { font-size: 44px; line-height: 1; margin-bottom: 10px; }

#aiops-drawer .ad-report-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: #0f1b2d;
  margin-bottom: 6px;
}

#aiops-drawer .ad-report-sub { font-size: 12px; color: #6b7280; }

#aiops-drawer .ad-score-row {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #f0f7ff;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 22px;
}

#aiops-drawer .ad-score-ring svg { width: 84px; height: 84px; flex-shrink: 0; }

#aiops-drawer .ad-score-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  color: #0f1b2d;
  margin-bottom: 6px;
}

#aiops-drawer .ad-maturity-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

#aiops-drawer .ad-section { margin-bottom: 20px; }

#aiops-drawer .ad-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: #0f1b2d;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid #e8ecf0;
  display: flex;
  align-items: center;
  gap: 7px;
}

#aiops-drawer .ad-summary {
  font-size: 13px;
  color: #374151;
  line-height: 1.8;
}

#aiops-drawer .ad-finding {
  display: flex;
  gap: 11px;
  padding: 11px 14px;
  border: 1px solid #e8ecf0;
  border-radius: 8px;
  margin-bottom: 7px;
  align-items: flex-start;
}

#aiops-drawer .ad-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

#aiops-drawer .ad-dot.high   { background: #dc2626; }
#aiops-drawer .ad-dot.medium { background: #d97706; }
#aiops-drawer .ad-dot.low    { background: #16a34a; }

#aiops-drawer .ad-finding-title  { font-weight: 700; font-size: 13px; margin-bottom: 3px; }
#aiops-drawer .ad-finding-detail { font-size: 12px; color: #6b7280; line-height: 1.5; }

#aiops-drawer .ad-strengths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

#aiops-drawer .ad-strength {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 7px;
  padding: 9px 12px;
  font-size: 12px;
  color: #166534;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

#aiops-drawer .ad-strength::before { content: '✓'; font-weight: 900; flex-shrink: 0; }

#aiops-drawer .ad-step {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  align-items: flex-start;
}

#aiops-drawer .ad-step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0073e6, #00c4ff);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#aiops-drawer .ad-step-title  { font-weight: 700; font-size: 13px; margin-bottom: 3px; }
#aiops-drawer .ad-step-detail { font-size: 12px; color: #6b7280; line-height: 1.55; }
#aiops-drawer .ad-step-badge  {
  display: inline-block;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
  background: #e0f2fe;
  color: #0369a1;
  margin-top: 4px;
  font-weight: 600;
}

#aiops-drawer .ad-email-confirm {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 18px;
  font-size: 13px;
  color: #166534;
}

#aiops-drawer .ad-email-icon { font-size: 22px; flex-shrink: 0; }

#aiops-drawer .ad-pdf-box {
  background: linear-gradient(135deg, #0f1b2d, #1e3a5f);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  margin-top: 16px;
}

#aiops-drawer .ad-pdf-box p { color: rgba(255,255,255,0.7); font-size: 12px; margin-bottom: 10px; }

#aiops-drawer .ad-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: #0073e6;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.15s;
}

#aiops-drawer .ad-pdf-btn:hover { background: #e0f2fe; }

/* ── Error ─────────────────────────────────────────────────── */
#aiops-drawer .ad-error {
  text-align: center;
  padding: 32px 20px;
  color: #dc2626;
}

#aiops-drawer .ad-error-icon { font-size: 36px; margin-bottom: 10px; }
#aiops-drawer .ad-error p    { font-size: 13px; line-height: 1.6; color: #991b1b; }

/* ── Registration Form ─────────────────────────────────────── */
#aiops-drawer .ad-reg { padding: 4px 0; }

#aiops-drawer .ad-reg-intro { text-align: center; margin-bottom: 22px; }
#aiops-drawer .ad-reg-intro-icon { font-size: 40px; margin-bottom: 10px; }

#aiops-drawer .ad-reg-intro h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: #0f1b2d;
  margin-bottom: 7px;
}

#aiops-drawer .ad-reg-intro p { font-size: 13px; color: #6b7280; line-height: 1.6; }

#aiops-drawer .ad-reg-form { display: flex; flex-direction: column; gap: 14px; }

#aiops-drawer .ad-reg-field { display: flex; flex-direction: column; gap: 5px; }

#aiops-drawer .ad-reg-field label {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  display: block;
}

#aiops-drawer .ad-reg-field input[type="text"],
#aiops-drawer .ad-reg-field input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #1a1a2e;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

#aiops-drawer .ad-reg-field input:focus {
  border-color: #0073e6;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,115,230,0.1);
}

#aiops-drawer .ad-avatar-dropzone {
  border: 2px dashed #cbd5e1;
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  cursor: pointer;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
  transition: all 0.15s;
}

#aiops-drawer .ad-avatar-dropzone:hover,
#aiops-drawer .ad-avatar-dropzone.drag-over { border-color: #0073e6; background: #f0f7ff; }

#aiops-drawer .ad-avatar-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

#aiops-drawer .ad-avatar-icon   { font-size: 28px; }
#aiops-drawer .ad-avatar-label  { font-size: 12px; color: #6b7280; }
#aiops-drawer .ad-avatar-label strong { color: #0073e6; }
#aiops-drawer .ad-avatar-hint   { font-size: 10px; color: #9ca3af; }

#aiops-drawer .ad-avatar-preview-wrap { position: relative; display: inline-block; }
#aiops-drawer .ad-avatar-img {
  width: 68px; height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0073e6;
  display: block;
}

#aiops-drawer .ad-avatar-remove {
  position: absolute;
  top: -4px; right: -4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  border: none;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

#aiops-drawer .ad-reg-error {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 12px;
  display: none;
}

#aiops-drawer .ad-reg-submit {
  width: 100%;
  background: linear-gradient(135deg, #0073e6, #005bb5);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
}

#aiops-drawer .ad-reg-submit:hover {
  background: linear-gradient(135deg, #005bb5, #004080);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(0,115,230,0.3);
}

#aiops-drawer .ad-reg-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

#aiops-drawer .ad-reg-note { font-size: 11px; color: #9ca3af; text-align: center; line-height: 1.6; }

/* ── Mobile: full-screen bottom sheet ─────────────────────── */
@media (max-width: 600px) {
  #aiops-drawer {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 94vh;
    border-radius: 18px 18px 0 0;
    transform: translateY(100%);
  }

  #aiops-drawer.aiops-visible { transform: translateY(0); }

  .aiops-categories-grid { grid-template-columns: 1fr; }
  #aiops-drawer .ad-strengths { grid-template-columns: 1fr; }
  #aiops-drawer .ad-yesno     { flex-direction: column; }
  #aiops-drawer .ad-q-text    { font-size: 18px; }
}

/* ── Multi-select (checkboxes) ────────────────────────────────── */
#aiops-drawer .ad-multi { display: flex; flex-direction: column; gap: 8px; }
#aiops-drawer .ad-multi-hint { font-size: 11px; color: #9ca3af; margin-bottom: 2px; }

#aiops-drawer .ad-check-opt {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 14px;
  color: #374151;
  background: #fff;
  user-select: none;
}

#aiops-drawer .ad-check-opt:hover {
  border-color: #0073e6;
  background: #f0f7ff;
}

#aiops-drawer .ad-check-opt.selected {
  border-color: #0073e6;
  background: #e0f2fe;
  color: #0f1b2d;
  font-weight: 600;
}

#aiops-drawer .ad-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid #d1d5db;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  position: relative;
}

#aiops-drawer .ad-check-opt.selected .ad-checkbox {
  border-color: #0073e6;
  background: #0073e6;
}

#aiops-drawer .ad-check-opt.selected .ad-checkbox::after {
  content: '✓';
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}
