/**
 * JaelPro 官方企業識別與主權設計系統 (JaelPro Sovereign CIS Design System)
 * Version: 2026.8 - 61 MECE Standard
 * Copyright (c) 2026 JaelPro Corporation (雅億科創)
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Noto+Sans+TC:wght@300;400;500;600;700;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  /* JaelPro 品牌核心色系 (Sovereign Teal & Emerald Palette) */
  --jaelpro-primary: #1f8285;
  --jaelpro-primary-dark: #0c3e41;
  --jaelpro-primary-light: #2ba2a6;
  --jaelpro-primary-glow: #2dd4bf;
  --jaelpro-primary-tint: #e2f4f5;
  --jaelpro-primary-soft: rgba(31, 130, 133, 0.08);

  /* 輔助與語意色系 (Semantic Colors) */
  --jaelpro-accent: #d97706;        /* 主權琥珀金 */
  --jaelpro-accent-light: #fef3c7;
  --jaelpro-accent-glow: #fbbf24;
  --jaelpro-success: #059669;       /* 永續翡翠綠 */
  --jaelpro-success-light: #d1fae5;
  --jaelpro-success-glow: #34d399;
  --jaelpro-danger: #dc2626;        /* 門禁赤紅 */
  --jaelpro-danger-light: #fee2e2;
  --jaelpro-danger-glow: #f87171;
  --jaelpro-info: #0284c7;          /* 情報深藍 */
  --jaelpro-info-light: #e0f2fe;
  --jaelpro-purple: #7c3aed;        /* 智囊神經紫 */
  --jaelpro-purple-light: #ede9fe;

  /* 淺色模式基底 (Light Clean Theme - Default) */
  --jaelpro-bg-page: #f8fafc;
  --jaelpro-bg-card: #ffffff;
  --jaelpro-bg-subtle: #f1f5f9;
  --jaelpro-bg-glass: rgba(255, 255, 255, 0.88);
  --jaelpro-border: #cbd5e1;
  --jaelpro-border-light: #e2e8f0;
  
  --jaelpro-text-heading: #0f172a;
  --jaelpro-text-body: #1e293b;
  --jaelpro-text-muted: #64748b;
  --jaelpro-text-inverse: #ffffff;

  /* 陰影與光暈 */
  --jaelpro-shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --jaelpro-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
  --jaelpro-shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  --jaelpro-shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
  --jaelpro-shadow-glow: 0 0 20px rgba(45, 212, 191, 0.25);
  --jaelpro-shadow-hover: 0 12px 28px -4px rgba(31, 130, 133, 0.18);

  /* 字型規範 */
  --jaelpro-font-sans: 'Plus Jakarta Sans', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --jaelpro-font-mono: 'JetBrains Mono', SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* 圓角與過渡 */
  --jaelpro-radius-sm: 6px;
  --jaelpro-radius-md: 10px;
  --jaelpro-radius-lg: 16px;
  --jaelpro-radius-xl: 24px;
  --jaelpro-radius-full: 9999px;
  --jaelpro-transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --jaelpro-transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 國防主權深色主題 (Cyber Sovereign Dark HUD) */
body.theme-dark,
.theme-dark {
  --jaelpro-primary: #2dd4bf;
  --jaelpro-primary-dark: #14b8a6;
  --jaelpro-primary-light: #5eead4;
  --jaelpro-primary-glow: #2dd4bf;
  --jaelpro-primary-tint: #134e4a;
  --jaelpro-primary-soft: rgba(45, 212, 191, 0.12);

  --jaelpro-bg-page: #0b1120;
  --jaelpro-bg-card: #1e293b;
  --jaelpro-bg-subtle: #0f172a;
  --jaelpro-bg-glass: rgba(30, 41, 59, 0.85);
  --jaelpro-border: #334155;
  --jaelpro-border-light: #1e293b;

  --jaelpro-text-heading: #f8fafc;
  --jaelpro-text-body: #e2e8f0;
  --jaelpro-text-muted: #94a3b8;
  --jaelpro-text-inverse: #0b1120;

  --jaelpro-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.2);
  --jaelpro-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --jaelpro-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --jaelpro-shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  --jaelpro-shadow-hover: 0 12px 28px -4px rgba(45, 212, 191, 0.25);
}

/* 全域重設與基礎排版 */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--jaelpro-font-sans);
  background-color: var(--jaelpro-bg-page);
  color: var(--jaelpro-text-body);
  margin: 0;
  padding: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--jaelpro-transition-normal), color var(--jaelpro-transition-normal);
}

/* Glassmorphism 面板與容器 */
.jaelpro-glass {
  background: var(--jaelpro-bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--jaelpro-border-light);
}

.jaelpro-card {
  background: var(--jaelpro-bg-card);
  border: 1px solid var(--jaelpro-border-light);
  border-radius: var(--jaelpro-radius-lg);
  padding: 24px;
  box-shadow: var(--jaelpro-shadow-sm);
  transition: all var(--jaelpro-transition-normal);
}

.jaelpro-card:hover {
  box-shadow: var(--jaelpro-shadow-hover);
  border-color: var(--jaelpro-primary-light);
}

/* Bento Grid 佈局 */
.jaelpro-bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

/* 頂部主權導航列 (JaelPro Unified Header) */
.jaelpro-topbar {
  background: var(--jaelpro-bg-card);
  border-bottom: 1px solid var(--jaelpro-border-light);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--jaelpro-shadow-xs);
}

.jaelpro-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--jaelpro-text-heading);
  font-weight: 800;
  font-size: 1.15rem;
}

.jaelpro-brand-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--jaelpro-radius-md);
  background: linear-gradient(135deg, var(--jaelpro-primary-dark), var(--jaelpro-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: var(--jaelpro-shadow-sm);
}

/* 徽章 Badge 系統 */
.jaelpro-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--jaelpro-radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.jaelpro-badge-primary {
  background: var(--jaelpro-primary-tint);
  color: var(--jaelpro-primary-dark);
  border: 1px solid rgba(31, 130, 133, 0.2);
}

body.theme-dark .jaelpro-badge-primary {
  background: rgba(45, 212, 191, 0.15);
  color: var(--jaelpro-primary-glow);
  border-color: rgba(45, 212, 191, 0.3);
}

.jaelpro-badge-accent {
  background: var(--jaelpro-accent-light);
  color: var(--jaelpro-accent);
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.jaelpro-badge-success {
  background: var(--jaelpro-success-light);
  color: var(--jaelpro-success);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

/* 零死鍵按鈕系統 (Zero Dead Button Active Controls) */
.jaelpro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--jaelpro-radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--jaelpro-transition-fast);
  text-decoration: none;
  font-family: var(--jaelpro-font-sans);
}

.jaelpro-btn:hover {
  transform: translateY(-1px);
}

.jaelpro-btn:active {
  transform: translateY(1px);
}

.jaelpro-btn-primary {
  background: var(--jaelpro-primary);
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(31, 130, 133, 0.25);
}

.jaelpro-btn-primary:hover {
  background: var(--jaelpro-primary-light);
  box-shadow: 0 4px 10px rgba(31, 130, 133, 0.35);
}

.jaelpro-btn-outline {
  background: transparent;
  border-color: var(--jaelpro-border);
  color: var(--jaelpro-text-body);
}

.jaelpro-btn-outline:hover {
  border-color: var(--jaelpro-primary);
  color: var(--jaelpro-primary);
  background: var(--jaelpro-primary-soft);
}

.jaelpro-btn-accent {
  background: var(--jaelpro-accent);
  color: #ffffff;
}

.jaelpro-btn-accent:hover {
  background: #b45309;
}

/* 數據指標 KPI 卡片 */
.jaelpro-kpi-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  background: var(--jaelpro-bg-card);
  border: 1px solid var(--jaelpro-border-light);
  border-radius: var(--jaelpro-radius-md);
}

.jaelpro-kpi-label {
  font-size: 0.8rem;
  color: var(--jaelpro-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.jaelpro-kpi-val {
  font-family: var(--jaelpro-font-mono);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--jaelpro-text-heading);
}

/* 響應式微調 */
@media (max-width: 768px) {
  .jaelpro-topbar {
    padding: 10px 16px;
  }
  .jaelpro-bento-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   JaelPro Sovereign Copilot & Unified Command Center Styles
   ========================================================================== */
#jaelpro-copilot-launcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1f8285, #0c3e41);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(31, 130, 133, 0.4);
  border: 1.5px solid rgba(45, 212, 191, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--jaelpro-font-sans);
}

#jaelpro-copilot-launcher:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(31, 130, 133, 0.55);
  border-color: #2dd4bf;
}

#jaelpro-copilot-launcher .launcher-icon {
  font-size: 1.2rem;
}

#jaelpro-copilot-launcher .launcher-label {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

#jaelpro-copilot-launcher .launcher-shortcut {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--jaelpro-font-mono);
}

#jaelpro-copilot-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

#jaelpro-copilot-backdrop.active {
  display: block;
  opacity: 1;
}

#jaelpro-copilot-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: 92%;
  max-width: 1020px;
  max-height: 88vh;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid #e2e8f0;
  z-index: 100000;
  display: none;
  flex-direction: column;
  overflow: hidden;
  font-family: var(--jaelpro-font-sans);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

#jaelpro-copilot-modal.active {
  display: flex;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.copilot-header {
  padding: 16px 24px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copilot-title-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.copilot-badge {
  background: linear-gradient(135deg, #1f8285, #0d9488);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}

.copilot-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}

.copilot-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.copilot-status-pill {
  font-size: 0.8rem;
  font-weight: 700;
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 10px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.copilot-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
}

.copilot-close-btn {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #64748b;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.15s;
}

.copilot-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.copilot-tabs {
  display: flex;
  background: #ffffff;
  padding: 8px 24px 0 24px;
  border-bottom: 1px solid #e2e8f0;
  gap: 8px;
  overflow-x: auto;
}

.copilot-tab {
  padding: 10px 18px;
  border: none;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.copilot-tab.active {
  color: #1f8285;
  border-bottom-color: #1f8285;
}

.copilot-tab-pane {
  display: none;
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
}

.copilot-tab-pane.active {
  display: block;
}

.copilot-section-header {
  font-size: 0.9rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 10px;
}

.copilot-councils-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.copilot-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.copilot-card:hover {
  border-color: #1f8285;
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.copilot-card.recommended {
  background: rgba(31, 130, 133, 0.04);
  border-color: rgba(31, 130, 133, 0.4);
}

.copilot-card .card-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.copilot-card .card-num {
  font-family: var(--jaelpro-font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  color: #1f8285;
}

.copilot-card .card-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

.copilot-card .card-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  background: #e2e8f0;
  padding: 2px 8px;
  border-radius: 4px;
  width: fit-content;
}

.copilot-card .card-desc {
  font-size: 0.85rem;
  color: #64748b;
  margin: 2px 0 0 0;
  line-height: 1.4;
}

.copilot-card .card-action {
  font-size: 0.75rem;
  font-weight: 800;
  color: #1f8285;
  margin-top: 6px;
  font-family: var(--jaelpro-font-mono);
}

.copilot-search-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.copilot-search-bar input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.copilot-matrix-filters {
  display: flex;
  gap: 8px;
}

.copilot-filter-chip {
  padding: 5px 12px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #475569;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}

.copilot-filter-chip.active {
  background: #1f8285;
  color: #ffffff;
  border-color: #1f8285;
}

.copilot-search-box-large {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #0284c7;
  border-radius: 12px;
  padding: 8px 16px;
  gap: 10px;
  margin-bottom: 16px;
}

.copilot-search-box-large input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 1.05rem;
  outline: none;
  color: #0f172a;
}

.copilot-timeline-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 16px;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-slider-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.timeline-bound {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
}

.timeline-slider-row input[type="range"] {
  flex: 1;
  cursor: pointer;
}

.copilot-results-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.copilot-search-item {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px;
  transition: all 0.2s;
}

.copilot-search-item:hover {
  border-color: #1f8285;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.copilot-search-item .item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.copilot-search-item .item-type-badge {
  background: #1f8285;
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
}

.copilot-search-item .item-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0f172a;
  text-decoration: none;
}

.copilot-search-item .item-title:hover {
  color: #1f8285;
}

.copilot-search-item .item-asof {
  margin-left: auto;
  font-size: 0.78rem;
  color: #64748b;
}

.copilot-search-item .item-snippet {
  font-size: 0.88rem;
  color: #475569;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.copilot-search-item .item-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.copilot-search-item .item-tag {
  color: #64748b;
  font-weight: 600;
}

.copilot-search-item .item-link {
  color: #1f8285;
  font-weight: 800;
  text-decoration: none;
}

.copilot-converter-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
}

.copilot-converter-card .converter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.copilot-converter-card .converter-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #0f172a;
}

.copilot-converter-card .api-tag {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--jaelpro-font-mono);
  font-size: 0.8rem;
  font-weight: 800;
}

.copilot-converter-card .converter-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 16px;
}

.copilot-converter-card .converter-actions-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.copilot-btn-primary {
  background: linear-gradient(135deg, #1f8285, #0d9488);
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.15s;
}

.copilot-btn-primary:hover {
  transform: translateY(-1px);
}

.copilot-btn-outline {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #0f172a;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
}

.copilot-console-box {
  background: #0f172a;
  color: #34d399;
  padding: 14px 18px;
  border-radius: 10px;
  font-family: var(--jaelpro-font-mono);
  font-size: 0.88rem;
  line-height: 1.6;
}

.copilot-grill-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
}

.copilot-grill-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.grill-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: #1e293b;
  line-height: 1.5;
}

.copilot-footer {
  padding: 12px 24px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copilot-btn-sm {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #1f8285;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

#jaelpro-copilot-toast {
  position: fixed;
  bottom: 84px;
  right: 24px;
  background: rgba(15, 23, 42, 0.95);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(45, 212, 191, 0.4);
  z-index: 1000000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.25s ease;
  font-family: var(--jaelpro-font-sans);
}

#jaelpro-copilot-toast.show {
  opacity: 1;
  transform: translateY(0);
}

