/* Switcher flotante profesional */
#ccm-switcher-root .ccm-switcher-wrap{
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 99999;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
#ccm-switcher-root .ccm-switcher-btn {
  background:#0f172a; color:#fff; border:none; border-radius:14px;
  padding:12px 14px; cursor:pointer; box-shadow:0 10px 30px rgba(2,6,23,.35);
  font-weight:700; letter-spacing:.2px; display:flex; align-items:center; gap:10px;
}
#ccm-switcher-root .ccm-switcher-btn .ccm-title{opacity:.9; font-weight:600;}
#ccm-switcher-root .ccm-switcher-menu{
  margin-top:10px; background:#ffffff; border-radius:14px; box-shadow:0 18px 40px rgba(2,6,23,.25);
  padding:8px; display:none; min-width:240px; border:1px solid #e5e7eb; color:#0f172a;
}
#ccm-switcher-root .ccm-switcher-item{
  padding:12px 12px; border-radius:10px; cursor:pointer; display:flex; justify-content:space-between; align-items:center; color:#0f172a;
}
#ccm-switcher-root .ccm-switcher-item:hover{ background:#f3f4f6; }
#ccm-switcher-root .ccm-switcher-item.active{ background:#e5e7eb; font-weight:700; }
#ccm-switcher-root .ccm-badge{ font-size:12px; padding:2px 8px; border-radius:999px; background:#0f172a; color:#fff; }
@media (prefers-color-scheme: dark){
  #ccm-switcher-root .ccm-switcher-menu{ background:#111827; border-color:#374151; color:#f9fafb; }
  #ccm-switcher-root .ccm-switcher-item{ color:#f9fafb; }
  #ccm-switcher-root .ccm-switcher-item:hover{ background:#1f2937; }
  #ccm-switcher-root .ccm-switcher-item.active{ background:#374151; }
  #ccm-switcher-root .ccm-badge{ background:#111827; color:#ffffff; border:1px solid #374151; }
}
