/* [project]/app/globals.css [app-client] (css) */
:root {
  --background: #0b0f1a;
  --foreground: #f1f5f9;
  --card-bg: #172035b3;
  --card-border: #ffffff14;
  --accent: #3b82f6;
  --accent-glow: #3b82f64d;
  --secondary: #6366f1;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --nav-bg: #0d1221e6;
  --muted: #64748b;
  --input-bg: #ffffff08;
  --sidebar-width: 280px;
  --sidebar-collapsed: 84px;
  --shadow-sm: 0 1px 2px 0 #0000000d;
  --shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
  --shadow-lg: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
  --shadow-xl: 0 20px 25px -5px #00000026, 0 8px 10px -6px #00000026;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

[data-theme="light"] {
  --background: #f8fafc;
  --foreground: #0f172a;
  --card-bg: #ffffffe6;
  --card-border: #0000000d;
  --accent: #2563eb;
  --accent-glow: #2563eb1a;
  --nav-bg: #fff;
  --muted: #64748b;
  --input-bg: #f1f5f9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(circle at 10% 20%, #3b82f608 0%, #0000 20%), radial-gradient(circle at 90% 80%, #6366f108 0%, #0000 20%);
  min-height: 100vh;
  font-family: Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  line-height: 1.5;
  transition: background .4s cubic-bezier(.4, 0, .2, 1), color .4s cubic-bezier(.4, 0, .2, 1);
}

.glass {
  background: var(--card-bg);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.card {
  padding: 1.75rem;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s;
}

.card:hover {
  box-shadow: var(--shadow-xl);
  border-color: #3b82f64d;
  transform: translateY(-6px);
}

.grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  display: grid;
}

.badge {
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .05em;
  justify-content: center;
  align-items: center;
  padding: .35rem .85rem;
  font-size: .7rem;
  font-weight: 700;
  display: inline-flex;
}

.badge-active {
  color: #10b981;
  background: #10b9811a;
  border: 1px solid #10b98133;
}

.badge-warning {
  color: #f59e0b;
  background: #f59e0b1a;
  border: 1px solid #f59e0b33;
}

.badge-danger {
  color: #ef4444;
  background: #ef44441a;
  border: 1px solid #ef444433;
}

:root {
  --sidebar-width: 280px;
  --sidebar-collapsed-width: 84px;
  --current-sidebar-width: var(--sidebar-width);
}

:root[data-sidebar-collapsed="true"] {
  --current-sidebar-width: var(--sidebar-collapsed-width);
}

.sidebar {
  width: var(--current-sidebar-width);
  background: var(--nav-bg);
  border-right: 1px solid var(--card-border);
  z-index: 50;
  flex-direction: column;
  height: 100vh;
  padding: 2.5rem 1rem;
  transition: width .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.sidebar-header-toggle:hover {
  background: #ffffff08;
}

.sidebar-header-toggle:hover .text-accent {
  filter: brightness(1.2);
}

.main-content {
  margin-left: var(--current-sidebar-width);
  min-height: 100vh;
  padding: 2.5rem 3rem;
  transition: margin-left .3s cubic-bezier(.4, 0, .2, 1);
}

.nav-link {
  color: var(--muted);
  border-radius: 8px;
  align-items: center;
  margin-bottom: .5rem;
  padding: .75rem 1rem;
  transition: all .2s;
  display: flex;
}

.nav-link:hover, .nav-link.active {
  background: var(--accent-glow);
  color: var(--accent);
}

@keyframes pulse-glow {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.4);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cursor-blink {
  from, to {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes pulse-highlight {
  0%, 15% {
    background-color: var(--accent-glow);
    outline: 2px solid var(--accent);
  }

  7%, 22% {
    background-color: #0000;
    outline: 2px solid #0000;
  }

  25% {
    outline: 1.5px solid var(--accent);
    background-color: #3b64f60d;
    background-image: linear-gradient(90deg, #0000, #3b82f680, #0000);
    background-position: -100% 0;
    background-repeat: no-repeat;
    background-size: 200% 100%;
  }

  65% {
    background-position: 150% 0;
  }

  100% {
    background-color: #0000;
    background-position: 150% 0;
    outline: 0 solid #0000;
  }
}

.animate-pulse-glow {
  animation: 2s infinite pulse-glow;
}

.animate-blink {
  animation: 1s step-end infinite cursor-blink;
}

.pulse-highlight {
  z-index: 10;
  position: relative;
  box-shadow: 0 0 30px #3b82f633;
  animation: 5s cubic-bezier(.4, 0, .2, 1) forwards pulse-highlight !important;
}

input.glass, select.glass, textarea.glass {
  background: var(--input-bg);
  border: 1px solid var(--card-border);
  color: var(--foreground) !important;
}

select.glass option {
  color: var(--foreground);
  background-color: #172035;
}

[data-theme="light"] select.glass option {
  background-color: #fff;
}

input::placeholder {
  color: var(--muted);
  opacity: .5;
}

.terminal-window {
  color: #10b981;
  background: #000;
  border: 1px solid #1e293b;
  border-radius: 8px;
  padding: 1rem;
  font-family: JetBrains Mono, Fira Code, monospace;
  font-size: .75rem;
  box-shadow: 0 10px 30px #00000080;
}

.terminal-line:before {
  content: "> ";
  color: var(--accent);
}

.quick-action-btn {
  border: 1px solid var(--card-border);
  cursor: pointer;
  color: var(--foreground);
  background: #ffffff08;
  border-radius: 8px;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  transition: all .2s;
  display: flex;
}

.quick-action-btn:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/