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

:root {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

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

::-webkit-scrollbar-track {
  background: #090d16;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

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

.nav-tab:hover {
  color: #f1f5f9;
  background: #131b2e;
}

.nav-tab.active {
  color: #22d3ee;
  background: #10192e;
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 4px 20px -2px rgba(6, 182, 212, 0.15);
}

/* Card Glow Effects */
.app-card {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-card:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 12px 30px -10px rgba(6, 182, 212, 0.15);
}

/* Terminal Container Styling */
#terminal-container {
  padding: 4px;
}

#terminal-container .xterm-viewport {
  background-color: #070a12 !important;
}

/* Toasts */
.toast {
  animation: slideInRight 0.3s ease-out forwards;
}

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