/* LuxeSalon Analytics - Custom Dark Glassmorphism CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  --bg-main: #0D1117;
  --panel-bg: rgba(22, 27, 34, 0.8);
  --panel-border: rgba(33, 38, 45, 1);
  --primary-emerald: #10B981;
  --secondary-amber: #D97706;
}

body {
  background-color: var(--bg-main);
  color: #dee2ec;
  font-family: 'Inter', sans-serif;
}

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

/* Glassmorphism Classes */
.glass-panel {
  background-color: rgba(22, 27, 34, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(33, 38, 45, 1);
  transition: border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.glass-panel-hover:hover {
  border-color: rgba(48, 54, 61, 1);
  background-color: rgba(22, 27, 34, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

.glass-input {
  background-color: rgba(13, 17, 23, 0.9);
  border: 1px solid rgba(33, 38, 45, 1);
  color: #dee2ec;
  transition: all 0.2s ease;
}

.glass-input:focus {
  outline: none;
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

/* Pulse effects */
@keyframes pulse-emerald {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.pulse-dot {
  animation: pulse-emerald 2s infinite;
}

.station-glow {
  box-shadow: inset 0 0 25px rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.4) !important;
}

.station-glow-warning {
  box-shadow: inset 0 0 25px rgba(217, 119, 7, 0.1);
  border-color: rgba(217, 119, 7, 0.5) !important;
}

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

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(60, 74, 66, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(134, 148, 138, 0.7);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
