@import "tailwindcss";

/* ─────────────────────────────────────────────────
   AurumOS Design System — Adaptive Luxury Theme
───────────────────────────────────────────────── */
:root {
  /* Default: Dark Theme (Gold & Shadow) */
  --aurum-bg:        #080808;
  --aurum-surface:   #111111;
  --aurum-surface-2: #181818;
  --aurum-border:    rgba(181, 148, 95, 0.2);
  --aurum-gold:      #D4AF37;
  --aurum-primary:   #B5945F;
  --aurum-primary-dim: rgba(181, 148, 95, 0.12);
  --aurum-text:      #FFFFFF;
  --aurum-text-muted: #94A3B8;
  --aurum-muted:     #888888;
  --aurum-danger:    #FF4D4D;
  --aurum-success:   #10B981;
  --aurum-info:      #3B82F6;
  --sidebar-w:         272px;
  --sidebar-w-collapsed: 64px;
  --topbar-h:        64px;
}

@media (prefers-color-scheme: light) {
  :root {
    --aurum-bg:        #F8F9FA;
    --aurum-surface:   #FFFFFF;
    --aurum-surface-2: #F1F3F5;
    --aurum-border:    rgba(0, 0, 0, 0.08); /* Bordes suaves para modo claro */
    --aurum-gold:      #B38D1B; /* Dorado un poco más profundo para contraste en blanco */
    --aurum-primary:   #9C7A4B;
    --aurum-primary-dim: rgba(181, 148, 95, 0.08);
    --aurum-text:      #1A1D23;
    --aurum-text-muted: #64748B;
    --aurum-muted:     #94A3B8;
    --aurum-danger:    #DC2626;
    --aurum-success:   #059669;
  }
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }

.aurum-body {
  background: var(--aurum-bg);
  color: var(--aurum-text);
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  min-height: 100vh;
  margin: 0;
}

/* ── Shell layout ─────────────────────────────── */
.aurum-shell {
  display: flex;
  min-height: 100vh;
}

/* ── Sidebar ──────────────────────────────────── */
.aurum-sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: var(--sidebar-w);
  background: var(--aurum-surface);
  border-right: 1px solid var(--aurum-border);
  display: flex;
  flex-direction: column;
  z-index: 50;
  overflow: hidden;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767px) {
  .aurum-sidebar {
    transform: translateX(-100%);
  }
  .aurum-sidebar--open {
    transform: translateX(0) !important;
  }
}

/* ── Sidebar colapsado (solo desktop) ─────────────── */
.aurum-sidebar--collapsed {
  width: var(--sidebar-w-collapsed);
}

.sidebar-collapsed .aurum-main {
  margin-left: var(--sidebar-w-collapsed);
}

/* Ocultar texto en estado colapsado */
.aurum-sidebar--collapsed .aurum-nav-label,
.aurum-sidebar--collapsed .aurum-brand-text,
.aurum-sidebar--collapsed .aurum-org-badge,
.aurum-sidebar--collapsed .aurum-user-meta,
.aurum-sidebar--collapsed .aurum-signout,
.aurum-sidebar--collapsed .aurum-nav-chevron,
.aurum-sidebar--collapsed .aurum-nav-children,
.aurum-sidebar--collapsed .aurum-sidebar-install {
  display: none !important;
}

/* Centrar ítems de nav */
.aurum-sidebar--collapsed .aurum-nav-item,
.aurum-sidebar--collapsed .aurum-nav-group-toggle {
  justify-content: center;
  padding: 10px 0;
}
.aurum-sidebar--collapsed .aurum-nav-item:hover {
  transform: none;
}
.aurum-sidebar--collapsed .aurum-nav-item--active {
  border-left: none;
  padding-left: 0;
}

/* Logo area cuando colapsado: apilar verticalmente y centrar */
.aurum-sidebar--collapsed .aurum-sidebar-logo {
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 16px 0 10px !important;
  gap: 6px;
}

/* SVG del logo: más pequeño y centrado al colapsar */
.aurum-sidebar--collapsed .aurum-brand-svg {
  width: 28px;
  height: 28px;
}

/* Botón de colapso: siempre visible en desktop, centrado al colapsar */
.aurum-collapse-btn {
  flex-shrink: 0;
}

/* Girar flecha cuando está colapsado */
.aurum-sidebar--collapsed .aurum-collapse-icon {
  transform: rotate(180deg);
}
.aurum-collapse-icon {
  transition: transform 0.25s ease;
}

/* Centrar footer */
.aurum-sidebar--collapsed .aurum-sidebar-footer {
  align-items: center;
}
.aurum-sidebar--collapsed .aurum-user-info {
  justify-content: center;
}

.aurum-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 32px 24px 24px;
  border-bottom: 1px solid var(--aurum-border);
}
.aurum-brand-svg {
  width: 40px;
  height: 40px;
  color: var(--aurum-gold);
  stroke-width: 1.2px;
}
.aurum-brand-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.aurum-brand-main {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--aurum-gold);
  letter-spacing: -0.01em;
}
.aurum-brand-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--aurum-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.aurum-org-badge {
  margin: 16px 16px 0;
  padding: 10px 14px;
  background: var(--aurum-primary-dim);
  border: 1px solid var(--aurum-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.aurum-org-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--aurum-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.aurum-org-plan {
  font-size: 10px;
  font-weight: 700;
  color: var(--aurum-gold);
  letter-spacing: 2px;
}

/* Nav */
.aurum-nav {
  flex: 1;
  padding: 24px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.aurum-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--aurum-muted);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.aurum-nav-item:hover {
  background: var(--aurum-primary-dim);
  color: var(--aurum-text);
  transform: translateX(4px);
}
.aurum-nav-item--active {
  background: var(--aurum-primary-dim);
  color: var(--aurum-primary);
  border-left: 4px solid var(--aurum-primary);
  padding-left: 10px;
}
.aurum-nav-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.aurum-nav-label { flex: 1; }

/* ── Icon background utilities (visible in light + dark) ── */
.icon-bg-gold    { background: rgba(181,148,95,.20); }
.icon-bg-green   { background: rgba(16,185,129,.18); }
.icon-bg-red     { background: rgba(220,38,38,.15); }
.icon-bg-blue    { background: rgba(59,130,246,.15); }
.icon-bg-yellow  { background: rgba(234,179,8,.15); }
.icon-bg-purple  { background: rgba(139,92,246,.15); }
.icon-bg-gray    { background: rgba(100,116,139,.12); }

/* Nav groups (collapsible) */
.aurum-nav-group { margin-bottom: 2px; }
.aurum-nav-group-toggle { cursor: pointer; border: none; background: none; width: 100%; }
.aurum-nav-chevron { transition: transform 0.2s ease; opacity: 0.5; }
.aurum-nav-group--active .aurum-nav-chevron { transform: rotate(180deg); opacity: 1; }
.aurum-nav-children {
  display: none;
  flex-direction: column;
  gap: 1px;
  padding-left: 20px;
  margin-top: 2px;
}
.aurum-nav-children--open { display: flex; }
.aurum-nav-sub-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--aurum-muted);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s ease;
}
.aurum-nav-sub-item:hover {
  background: var(--aurum-primary-dim);
  color: var(--aurum-text);
}
.aurum-nav-sub-item--active {
  background: var(--aurum-primary-dim);
  color: var(--aurum-primary);
}
.aurum-nav-sub-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.35;
  flex-shrink: 0;
  margin-right: 2px;
}
.aurum-nav-sub-item--active .aurum-nav-sub-dot {
  opacity: 1;
  background: var(--aurum-primary);
}

/* Sidebar footer */
.aurum-sidebar-footer {
  padding: 16px;
  border-top: 1px solid var(--aurum-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aurum-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.aurum-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--aurum-primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.aurum-user-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.aurum-user-email {
  font-size: 12px;
  color: var(--aurum-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.aurum-user-roles {
  font-size: 10px;
  color: var(--aurum-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.aurum-signout {
  font-size: 12px;
  color: var(--aurum-muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid var(--aurum-border);
  transition: all 0.15s;
}
.aurum-signout:hover {
  color: var(--aurum-danger);
  border-color: var(--aurum-danger);
}

/* ── Main area ────────────────────────────────── */
.aurum-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 0;
  margin-left: var(--sidebar-w);
  transition: margin-left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767px) {
  .aurum-main {
    margin-left: 0;
  }
}

/* Topbar */
.aurum-topbar {
  position: sticky;
  top: 0;
  height: var(--topbar-h);
  background: var(--aurum-surface);
  opacity: 0.98; /* Un poco más opaco para mejor legibilidad */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--aurum-border);
  padding: 0 16px; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 40;
}

@media (min-width: 768px) {
  .aurum-topbar {
    padding: 0 32px;
  }
}
.aurum-page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--aurum-text);
  margin: 0;
}
.aurum-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.aurum-metal-ticker {
  display: flex;
  align-items: center;
  gap: 4px; /* Reducido de 6px */
  padding: 4px 8px; /* Reducido de 4px 12px */
  background: var(--aurum-primary-dim);
  border: 1px solid var(--aurum-border);
  border-radius: 20px;
}

@media (min-width: 768px) {
  .aurum-metal-ticker {
    gap: 6px;
    padding: 4px 12px;
  }
}
.aurum-metal-label {
  font-size: 9px; /* Reducido de 10px */
  font-weight: 700;
  color: var(--aurum-gold);
  letter-spacing: 1px;
}
.aurum-metal-price {
  font-size: 11px; /* Reducido de 12px */
  font-weight: 600;
  color: var(--aurum-text);
}
@media (min-width: 768px) {
  .aurum-metal-label { font-size: 10px; }
  .aurum-metal-price { font-size: 12px; }
}
.aurum-alert-badge {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  text-decoration: none;
}
.aurum-badge-count {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--aurum-danger);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content */
.aurum-content {
  flex: 1;
  padding: 16px; /* Sincronizado con topbar */
  min-width: 0;
}

@media (min-width: 768px) {
  .aurum-content {
    padding: 32px;
  }
}

/* Flash */
.aurum-flash {
  margin: 0 32px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  border-left: 4px solid;
}
.aurum-flash-notice { background: rgba(16,185,129,0.1); border-color: var(--aurum-success); color: #6EE7B7; }
.aurum-flash-alert  { background: rgba(239,68,68,0.1);  border-color: var(--aurum-danger);  color: #FCA5A5; }

/* ── Dashboard components ─────────────────────── */
.aurum-grid-kpi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.aurum-kpi-card {
  background: var(--aurum-surface);
  border: 1px solid var(--aurum-border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s;
}
.aurum-kpi-card:hover { border-color: var(--aurum-primary); }
.aurum-kpi-icon {
  font-size: 22px;
  margin-bottom: 4px;
}
.aurum-kpi-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--aurum-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.aurum-kpi-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--aurum-text);
  line-height: 1;
}
.aurum-kpi-sub {
  font-size: 12px;
  color: var(--aurum-muted);
}
.aurum-kpi-card--gold { border-color: rgba(212, 175, 55, 0.35); }
.aurum-kpi-card--gold .aurum-kpi-value { color: var(--aurum-gold); }
.aurum-kpi-card--danger { border-color: rgba(239, 68, 68, 0.3); }
.aurum-kpi-card--danger .aurum-kpi-value { color: var(--aurum-danger); }
.aurum-kpi-card--success .aurum-kpi-value { color: var(--aurum-success); }

/* Tables */
.aurum-section {
  background: var(--aurum-surface);
  border: 1px solid var(--aurum-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.aurum-section-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--aurum-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.aurum-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--aurum-text);
}
.aurum-section-link {
  font-size: 12px;
  color: var(--aurum-primary);
  text-decoration: none;
}
.aurum-section-link:hover { color: var(--aurum-gold); }

.aurum-table {
  width: 100%;
  border-collapse: collapse;
}
.aurum-table th {
  padding: 12px 24px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: var(--aurum-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--aurum-border);
  background: var(--aurum-surface-2);
}
.aurum-table td {
  padding: 14px 24px;
  font-size: 14px;
  color: var(--aurum-text);
  border-bottom: 1px solid rgba(181, 148, 95, 0.08);
}
.aurum-table tr:last-child td { border-bottom: none; }
.aurum-table tr:hover td { background: var(--aurum-primary-dim); }
.aurum-table td a { color: var(--aurum-primary); text-decoration: none; }
.aurum-table td a:hover { color: var(--aurum-gold); }

/* Divisores sutiles para listas */
.aurum-divide > * + * {
  border-top: 1px solid rgba(181, 148, 95, 0.07);
}
@media (prefers-color-scheme: light) {
  .aurum-divide > * + * {
    border-top-color: rgba(0, 0, 0, 0.06);
  }
}

/* Badges */
.aurum-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.badge-vault     { background: rgba(59,130,246,0.15);  color: #93C5FD; }
.badge-memo      { background: rgba(245,158,11,0.15); color: #FCD34D; }
.badge-sold      { background: rgba(16,185,129,0.15); color: #6EE7B7; }
.badge-workshop  { background: rgba(139,92,246,0.15); color: #C4B5FD; }
.badge-active    { background: rgba(16,185,129,0.15); color: #6EE7B7; }
.badge-draft     { background: rgba(107,114,128,0.2); color: #9CA3AF; }
.badge-danger    { background: rgba(239,68,68,0.15);  color: #FCA5A5; }
.badge-platinum  { background: linear-gradient(135deg,rgba(147,197,253,0.2),rgba(196,181,253,0.2)); color: #a5b4fc; border: 1px solid rgba(165,180,252,0.35); font-weight: 700; letter-spacing:.05em; }
.badge-black     { background: linear-gradient(135deg,#1a1a1a,#2d2d2d); color: #f3f4f6; border: 1px solid #4b5563; font-weight: 700; letter-spacing:.05em; text-shadow: 0 0 8px rgba(255,255,255,.15); }
.badge-gold-tier { background: linear-gradient(135deg,rgba(212,175,55,0.25),rgba(251,191,36,0.15)); color: #fbbf24; border: 1px solid rgba(212,175,55,0.4); font-weight: 700; letter-spacing:.05em; }
.badge-silver    { background: linear-gradient(135deg,rgba(203,213,225,0.2),rgba(148,163,184,0.15)); color: #cbd5e1; border: 1px solid rgba(203,213,225,0.35); font-weight: 700; letter-spacing:.05em; }
.badge-delivered { 
  background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%); 
  color: #FFFFFF; 
  border: 1px solid rgba(255, 255, 255, 0.3); 
  font-weight: 800; 
  letter-spacing: .08em;
  box-shadow: 0 0 15px rgba(0, 119, 182, 0.4);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  animation: sapphire-glow 3s infinite ease-in-out;
}

.badge-delivered::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg);
  animation: sapphire-shine 3s infinite;
}

@keyframes sapphire-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(0, 119, 182, 0.4); filter: brightness(1); }
  50% { box-shadow: 0 0 25px rgba(0, 180, 216, 0.6); filter: brightness(1.15); }
}

@keyframes sapphire-shine {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

.badge-default   { background: var(--aurum-surface-2); color: var(--aurum-text-muted); border: 1px solid var(--aurum-border); }

/* Metal ticker row */
.aurum-metals-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.aurum-metal-card {
  background: var(--aurum-surface);
  border: 1px solid var(--aurum-border);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.aurum-metal-name { font-size: 12px; font-weight: 700; color: var(--aurum-muted); letter-spacing: 2px; }
.aurum-metal-g    { font-size: 20px; font-weight: 700; color: var(--aurum-gold); }
.aurum-metal-oz   { font-size: 11px; color: var(--aurum-muted); margin-top: 2px; }

/* Two-column grid */
.aurum-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Empty state */
.aurum-empty {
  padding: 40px 24px;
  text-align: center;
  color: var(--aurum-muted);
  font-size: 14px;
}

/* Auth pages */
.aurum-auth-page {
  min-height: 100vh;
  background: var(--aurum-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.aurum-auth-card {
  background: var(--aurum-surface);
  border: 1px solid var(--aurum-border);
  border-radius: 20px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
}
.aurum-auth-logo {
  text-align: center;
  margin-bottom: 36px;
}

/* Plataforma badge */
.aurum-auth-platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--aurum-border);
  background: var(--aurum-surface-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--aurum-text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Icono de organización */
.aurum-auth-org-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--aurum-surface-2) 0%, rgba(var(--aurum-primary-rgb, 184,142,58),.12) 100%);
  border: 1px solid var(--aurum-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.aurum-auth-org-icon svg { width: 32px; height: 32px; color: var(--aurum-gold); }
.aurum-auth-org-icon img { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; }

/* Nombre de organización */
.aurum-auth-logo .aurum-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--aurum-gold);
  display: block;
  line-height: 1.2;
}
.aurum-auth-subtitle {
  font-size: 13px;
  color: var(--aurum-muted);
  display: block;
  margin-top: 6px;
}

/* Divider antes del form */
.aurum-auth-divider {
  height: 1px;
  background: var(--aurum-border);
  margin: 0 0 28px;
}

/* Host badge al pie */
.aurum-auth-host {
  font-size: 11px;
  color: var(--aurum-text-muted);
  opacity: 0.45;
  text-align: center;
  letter-spacing: 0.03em;
}

/* Forms */
.aurum-field { margin-bottom: 20px; }
.aurum-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--aurum-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.aurum-input {
  width: 100%;
  background: var(--aurum-surface-2);
  border: 1px solid var(--aurum-border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--aurum-text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s;
}
.aurum-input:focus { border-color: var(--aurum-primary); }
.aurum-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--aurum-primary);
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s;
}
.aurum-btn:hover { background: var(--aurum-gold); }
/* ── PWA Install in Sidebar ───────────────────── */
.aurum-sidebar-install {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  margin-bottom: 12px;
  background: var(--aurum-primary-dim);
  border: 1px solid var(--aurum-gold);
  color: var(--aurum-gold);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  transition: all 0.2s;
  cursor: pointer;
}
.aurum-sidebar-install:hover {
  background: var(--aurum-gold);
  color: #121212;
}

/* ── Estilos de listas para Trix / ActionText ── */
.trix-content ul, .trix-content-pos ul, .prose ul {
  list-style-type: disc !important;
  margin-left: 1.5rem !important;
  padding-left: 0.5rem !important;
  display: block !important;
}

.trix-content ol, .trix-content-pos ol, .prose ol {
  list-style-type: decimal !important;
  margin-left: 1.5rem !important;
  padding-left: 0.5rem !important;
  display: block !important;
}

.trix-content li, .trix-content-pos li, .prose li {
  display: list-item !important;
  margin-bottom: 0.25rem !important;
}

/* ── Kanban Pipeline Placeholder Dinámico ── */
[data-pipeline-target="column"]:has([data-draggable="true"]) [data-pipeline-placeholder="true"] {
  display: none !important;
}
