/**
 * JARVIS Panel Styles
 * Phase 2 AI Orchestration: Shared "Ask Jarvis" panel component
 * 
 * Usage: Include this CSS in any page that uses the Jarvis panel
 */

/* ─────────────────────────────────────────────────────────────────────────────
   Shared Layout Tokens (Bundle 1+)
   ───────────────────────────────────────────────────────────────────────────── */
.gap-xxs { gap: 0.2rem !important; }
.gap-xs { gap: 0.35rem !important; }
.gap-sm { gap: 0.5rem !important; }
.gap-md { gap: 0.75rem !important; }
.gap-lg { gap: 1.25rem !important; }
.gap-xl { gap: 1.75rem !important; }
.gap-2xl { gap: 2.25rem !important; }

.pad-xxs { padding: 0.2rem !important; }
.pad-xs { padding: 0.35rem !important; }
.pad-sm { padding: 0.65rem !important; }
.pad-md { padding: 1rem !important; }
.pad-lg { padding: 1.5rem !important; }
.pad-xl { padding: 2rem !important; }
.pad-2xl { padding: 2.5rem !important; }

.round-xs { border-radius: 0.35rem !important; }
.round-sm { border-radius: 0.45rem !important; }
.round-md { border-radius: 0.75rem !important; }
.round-lg { border-radius: 1.25rem !important; }
.round-pill { border-radius: 999px !important; }

.shadow-soft {
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08), 0 4px 16px rgba(15, 23, 42, 0.06) !important;
}
.shadow-crisp {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.08) !important;
}

.text-muted-uk { color: rgba(15, 23, 42, 0.65) !important; }
.text-soft-uk  { color: rgba(15, 23, 42, 0.5) !important; }
.text-ink-uk   { color: #0f172a !important; }
.text-success-uk { color: #0f5132 !important; }
.text-warning-uk { color: #9c6500 !important; }
.text-danger-uk  { color: #842029 !important; }

.uk-flex { display: flex !important; }
.uk-inline { display: inline-flex !important; }
.uk-between { justify-content: space-between !important; align-items: center !important; }
.uk-center { justify-content: center !important; align-items: center !important; }
.uk-column { flex-direction: column !important; }
.uk-wrap { flex-wrap: wrap !important; }
.uk-fluid { width: 100% !important; }

.grid-uk-2,
.grid-uk-3,
.grid-uk-4 {
  display: grid !important;
  gap: 1rem;
}
.grid-uk-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-uk-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-uk-4 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

.stack-md {
  display: flex;
  gap: 1rem;
}
@media (max-width: 992px) {
  .stack-md { flex-direction: column; }
}

.hover-uk {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-uk:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.15);
}

.toolbar-uk {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Buttons & Links
   ───────────────────────────────────────────────────────────────────────────── */
.btn-uk {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.4rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-uk-primary {
  background: linear-gradient(135deg, #4953ff 0%, #7f74ff 100%);
  color: white;
  border-color: transparent;
}
.btn-uk-primary:hover { opacity: 0.92; color: white; }
.btn-uk-outline {
  background: white;
  border-color: rgba(15, 23, 42, 0.15);
  color: #0f172a;
}
.btn-uk-outline:hover {
  border-color: #0f172a;
  color: #0f172a;
}
.btn-uk-tertiary {
  background: rgba(15, 23, 42, 0.05);
  color: #0f172a;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Card System
   ───────────────────────────────────────────────────────────────────────────── */
.card-uk {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}
.card-uk.compact { padding: 1.15rem; }
.card-uk-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-uk-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}
.card-uk-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.card-uk-header h5,
.card-uk-header h6 {
  margin: 0;
  font-weight: 600;
  color: #0f172a;
}
.card-uk-section {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 1rem;
  margin-top: 1rem;
}
.card-uk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Pills & Status Badges
   ───────────────────────────────────────────────────────────────────────────── */
.pill-uk {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid transparent;
  background: rgba(15, 23, 42, 0.05);
  color: #0f172a;
}
.pill-dot {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: currentColor;
}
.pill-muted { background: rgba(15, 23, 42, 0.06); color: rgba(15, 23, 42, 0.7); }

.pill-status-draft    { background: rgba(108, 117, 125, 0.15); color: #495057; }
.pill-status-sent     { background: rgba(13, 110, 253, 0.15); color: #0d6efd; }
.pill-status-active   { background: rgba(13, 202, 240, 0.18); color: #0a5773; }
.pill-status-evaluation { background: rgba(255, 193, 7, 0.18); color: #b58100; }
.pill-status-awarded  { background: rgba(25, 135, 84, 0.15); color: #0f5132; }
.pill-status-pending  { background: rgba(255, 193, 7, 0.18); color: #b58100; }
.pill-status-success  { background: rgba(25, 135, 84, 0.15); color: #0f5132; }
.pill-status-danger   { background: rgba(220, 53, 69, 0.18); color: #842029; }
.pill-status-info     { background: rgba(13, 110, 253, 0.15); color: #0b5ed7; }
.pill-status-signed   { background: rgba(25, 135, 84, 0.18); color: #0c4128; }
.pill-status-declined { background: rgba(220, 53, 69, 0.22); color: #842029; }
.pill-status-expired  { background: rgba(108, 117, 125, 0.18); color: #495057; }
.pill-status-urgent   { background: rgba(220, 53, 69, 0.15); color: #ba1b2a; }
.pill-status-neutral  { background: rgba(0, 0, 0, 0.05); color: rgba(15, 23, 42, 0.7); }

/* ─────────────────────────────────────────────────────────────────────────────
   Alert / Banner System (LOA & Compliance)
   ───────────────────────────────────────────────────────────────────────────── */
.alert-uk {
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid transparent;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.alert-uk i {
  font-size: 1.1rem;
  margin-top: 0.15rem;
}
.alert-uk-success { background: rgba(25, 135, 84, 0.1); border-color: rgba(25, 135, 84, 0.3); color: #14532d; }
.alert-uk-danger  { background: rgba(220, 53, 69, 0.12); border-color: rgba(220, 53, 69, 0.35); color: #842029; }
.alert-uk-warning { background: rgba(255, 193, 7, 0.15); border-color: rgba(255, 193, 7, 0.4); color: #7a5b00; }
.alert-uk-info    { background: rgba(13, 110, 253, 0.12); border-color: rgba(13, 110, 253, 0.35); color: #0b5ed7; }

.banner-uk {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}
.banner-uk .banner-body h6 {
  margin: 0;
  font-weight: 600;
  color: #0f172a;
}
.banner-uk .banner-body p {
  margin: 0.25rem 0 0;
  color: rgba(15, 23, 42, 0.7);
  font-size: 0.95rem;
}
.banner-uk .banner-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.banner-uk .banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.banner-uk.danger {
  border-color: rgba(220, 53, 69, 0.25);
  background: linear-gradient(135deg, rgba(248, 215, 218, 0.6), #fff);
}
.banner-uk.warning {
  border-color: rgba(255, 193, 7, 0.35);
  background: linear-gradient(135deg, rgba(255, 243, 205, 0.8), #fff);
}
.banner-uk.success {
  border-color: rgba(25, 135, 84, 0.25);
  background: linear-gradient(135deg, rgba(209, 231, 221, 0.75), #fff);
}
.banner-uk.info {
  border-color: rgba(13, 110, 253, 0.25);
  background: linear-gradient(135deg, rgba(231, 243, 255, 0.85), #fff);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Timeline & Badge Tokens
   ───────────────────────────────────────────────────────────────────────────── */
.timeline-uk {
  position: relative;
  padding-left: 1.75rem;
}
.timeline-uk::before {
  content: '';
  position: absolute;
  left: 0.55rem;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 2px;
  background: rgba(15, 23, 42, 0.1);
}
.timeline-entry {
  position: relative;
  padding-bottom: 1.5rem;
}
.timeline-entry:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -1.1rem;
  top: 0.15rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: #7c3aed;
  border: 3px solid #fff;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
}
.timeline-entry .timeline-meta {
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.55);
}
.timeline-entry .timeline-content {
  background: rgba(15, 23, 42, 0.02);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.05);
}
.timeline-entry .timeline-toggle {
  cursor: pointer;
  color: #0d6efd;
  font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Notes & Tasks Panels
   ───────────────────────────────────────────────────────────────────────────── */
.notes-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.note-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  background: #fff;
}
.note-card.pinned {
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.18);
}
.note-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.6);
}
.task-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.task-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.85rem;
  background: white;
}
.task-item.completed {
  opacity: 0.65;
  text-decoration: line-through;
}
.task-meta {
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.6);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Toolbar / Filter Chips
   ───────────────────────────────────────────────────────────────────────────── */
.filter-chip {
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: white;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-chip.active {
  border-color: transparent;
  background: linear-gradient(135deg, #4953ff 0%, #7f74ff 100%);
  color: white;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Jarvis Panel Core Styles (existing functionality preserved)
   ───────────────────────────────────────────────────────────────────────────── */
.jarvis-panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.jarvis-panel-backdrop.show {
  opacity: 1;
  visibility: visible;
}
.jarvis-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: white;
  box-shadow: -4px 0 28px rgba(15, 23, 42, 0.25);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}
.jarvis-panel.show { right: 0; }
.jarvis-panel-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.jarvis-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.jarvis-panel-title i { font-size: 24px; }
.jarvis-panel-title h5 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}
.jarvis-panel-context {
  font-size: 12px;
  opacity: 0.9;
  margin-top: 2px;
}
.jarvis-panel-close {
  background: rgba(255, 255, 255, 0.25);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.jarvis-panel-close:hover { background: rgba(255, 255, 255, 0.35); }

.jarvis-chat-area {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #f8fafc;
}
.jarvis-message {
  margin-bottom: 16px;
  animation: jarvis-fade-in 0.3s ease;
}
@keyframes jarvis-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.jarvis-message-user {
  display: flex;
  justify-content: flex-end;
}
.jarvis-message-user .jarvis-message-bubble {
  background: #667eea;
  color: white;
  border-radius: 16px 16px 4px 16px;
  max-width: 85%;
}
.jarvis-message-assistant {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.jarvis-message-assistant .jarvis-message-bubble {
  background: white;
  border-radius: 16px 16px 16px 4px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 12px 16px;
  color: #0f172a;
  line-height: 1.5;
}
.jarvis-agent-attribution {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 11px;
  color: rgba(15, 23, 42, 0.6);
}
.jarvis-agent-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #e7f3ff;
  color: #0d6efd;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}

.jarvis-actions {
  margin-top: 14px;
}
.jarvis-actions-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.6);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.jarvis-action-card {
  background: rgba(102, 126, 234, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.25);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.jarvis-action-info { flex: 1; min-width: 0; }
.jarvis-action-type {
  font-size: 12px;
  font-weight: 600;
  color: #344054;
  display: flex;
  align-items: center;
  gap: 6px;
}
.jarvis-action-desc {
  font-size: 11px;
  color: rgba(15, 23, 42, 0.65);
  margin-top: 2px;
}
.jarvis-action-btn {
  padding: 4px 12px;
  border-radius: 8px;
  border: none;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.jarvis-action-btn-apply { background: #198754; color: white; }
.jarvis-action-btn-open  { background: #0d6efd; color: white; }
.jarvis-action-btn-approval { background: #ffc107; color: #0f172a; cursor: not-allowed; }

.jarvis-input-area {
  padding: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  background: white;
}
.jarvis-input-wrapper {
  display: flex;
  gap: 8px;
}
.jarvis-input {
  flex: 1;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 10px;
  padding: 10px 14px;
  resize: none;
  min-height: 44px;
}
.jarvis-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}
.jarvis-send-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.jarvis-send-btn:hover { transform: scale(1.05); }
.jarvis-send-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.jarvis-loading {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
}
.jarvis-loading-dots {
  display: flex;
  gap: 4px;
}
.jarvis-loading-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #667eea;
  animation: jarvis-bounce 1.4s infinite ease-in-out both;
}
@keyframes jarvis-bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}
.jarvis-loading-text {
  font-size: 12px;
  color: rgba(15, 23, 42, 0.6);
}

.jarvis-empty-state {
  text-align: center;
  padding: 40px 20px;
  color: rgba(15, 23, 42, 0.6);
}
.jarvis-empty-state i {
  font-size: 48px;
  color: #667eea;
  opacity: 0.5;
  margin-bottom: 12px;
}
.jarvis-skill-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.jarvis-skill-btn {
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 999px;
  padding: 6px 14px;
  background: white;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.jarvis-skill-btn:hover {
  border-color: #667eea;
  color: #667eea;
}
.jarvis-skill-medium { border-color: #ffc107; color: #a07900; }
.jarvis-skill-high   { border-color: #dc3545; color: #921c26; }
.jarvis-suggestion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.jarvis-suggestion-chip {
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  background: white;
  cursor: pointer;
}
.jarvis-suggestion-chip:hover {
  border-color: #667eea;
  color: #667eea;
}

.jarvis-disabled-notice {
  text-align: center;
  padding: 40px 20px;
  color: rgba(15, 23, 42, 0.6);
}

.jarvis-disabled-notice i {
  font-size: 24px;
  color: #adb5bd;
  margin-bottom: 8px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Skill Shortcuts (Phase 4)
   ───────────────────────────────────────────────────────────────────────────── */
.jarvis-skill-shortcuts {
  margin-bottom: 16px;
}

.jarvis-shortcuts-label {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  font-weight: 600;
}

.jarvis-skill-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 8px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  text-align: left;
  transition: all 0.2s;
}

.jarvis-skill-btn:hover {
  background: #f0f4ff;
  border-color: #667eea;
  transform: translateX(4px);
}

.jarvis-skill-btn i:first-child {
  font-size: 16px;
  color: #667eea;
  width: 20px;
  text-align: center;
}

.jarvis-skill-btn span {
  flex: 1;
}

.jarvis-risk-badge {
  font-size: 10px;
  color: #ffc107;
}

.jarvis-skill-medium {
  border-left: 3px solid #ffc107;
}

.jarvis-skill-high {
  border-left: 3px solid #dc3545;
}

.jarvis-divider {
  display: flex;
  align-items: center;
  margin: 16px 0;
  color: #adb5bd;
  font-size: 11px;
}

.jarvis-divider::before,
.jarvis-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #dee2e6;
}

.jarvis-divider span {
  padding: 0 12px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Apply Actions (Phase 4C)
   ───────────────────────────────────────────────────────────────────────────── */
.jarvis-apply-actions-list {
  margin-bottom: 12px;
}

.jarvis-apply-action-item {
  margin-bottom: 8px;
}

.jarvis-action-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.jarvis-action-checkbox:hover {
  background: #f0f4ff;
  border-color: #667eea;
}

.jarvis-action-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #198754;
  cursor: pointer;
}

.jarvis-action-check-icon {
  width: 24px;
  height: 24px;
  background: #e7f3ff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d6efd;
  font-size: 12px;
}

.jarvis-action-check-label {
  flex: 1;
  font-size: 13px;
  color: #333;
}

.jarvis-apply-selected-btn {
  width: 100%;
  padding: 10px 16px;
  background: #198754;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.jarvis-apply-selected-btn:hover {
  background: #157347;
}

.jarvis-apply-selected-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .jarvis-panel {
    width: 100%;
    right: -100%;
  }
  
  .jarvis-panel.show {
    right: 0;
  }
  
  .jarvis-skill-btn {
    padding: 12px 14px;
  }
}
