adk-gateway 1.0.0

Multi-channel AI gateway for adk-rust agents — Telegram, Slack, WhatsApp, Discord, Matrix + control panel
@import "tailwindcss";

/* Custom design tokens */
:root {
  --color-sidebar: #1a1a2e;
  --color-sidebar-hover: #16213e;
  --color-accent: #4361ee;
  --color-accent-hover: #3451d1;
}

/* Base styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Setup wizard animations */
@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-in-left {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

.animate-fade-in-right {
  animation: fade-in-right 0.3s ease-out;
}

.animate-fade-in-left {
  animation: fade-in-left 0.3s ease-out;
}

.animate-confetti {
  animation: confetti-fall 3s ease-in forwards;
}