/* ==========================================================================
   MEB (Make Easy Deb) — style.css
   Styles complémentaires à Tailwind (CDN), utilisés par index.html
   ========================================================================== */

.terminal-shadow {
  box-shadow: 0 0 20px rgba(0, 219, 233, 0.15);
}

.cyan-glow:focus-within {
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
  border-color: #00dbe9;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #081425;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

.active-nav-border {
  border-bottom: 2px solid #b7c4ff;
}

@keyframes pulse-cyan {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.pulse-effect {
  animation: pulse-cyan 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Toast de confirmation (copier-coller) */
.meb-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 16px);
  background: #0f1b2e;
  color: #d8e3fb;
  border: 1px solid rgba(183, 196, 255, 0.3);
  padding: 10px 18px;
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.meb-toast-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}