@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700;800&display=swap');

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #06070a;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Navigation Tabs */
.nav-tab {
  color: #94a3b8;
  background-color: transparent;
  border: 1px solid transparent;
}

.nav-tab:hover {
  color: #f8fafc;
  background-color: rgba(255, 255, 255, 0.04);
}

.nav-tab.active {
  color: #10b981;
  background-color: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #0b0d13;
}

::-webkit-scrollbar-thumb {
  background: #1c2333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #10b981;
}

.scrollbar-thin::-webkit-scrollbar {
  width: 5px;
}

/* Console Syntax Highlighting */
.log-info { color: #e2e8f0; }
.log-warn { color: #f59e0b; font-weight: 600; }
.log-error { color: #ef4444; font-weight: 700; }
.log-system { color: #06b6d4; font-weight: 600; }
.log-grim { color: #a855f7; font-weight: 700; }
.log-cmd { color: #10b981; font-weight: 700; }

/* Toast Animations */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.toast-enter {
  animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast-exit {
  animation: fadeOut 0.25s ease-in forwards;
}
