html, body {
  height: 100%;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #f8fafc;
}

.root {
  display: flex;
  flex-direction: column;
  height: 100%;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(15, 15, 35, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00d4ff40, #7c3aed40);
  border-radius: 4px;
  border: 1px solid rgba(148, 163, 184, 0.1);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00d4ff60, #7c3aed60);
}

::selection {
  background: rgba(0, 212, 255, 0.3);
  color: #f8fafc;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #1a1a2e inset !important;
  -webkit-text-fill-color: #f8fafc !important;
  caret-color: #f8fafc;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.recharts-default-tooltip {
  background: rgba(26, 26, 46, 0.95) !important;
  border: 1px solid rgba(148, 163, 184, 0.2) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(10px);
}

.recharts-tooltip-label {
  color: #f8fafc !important;
  font-weight: 600;
}

.recharts-tooltip-item-list {
  margin-top: 4px;
}

.recharts-tooltip-item {
  color: #94a3b8 !important;
}

.recharts-cartesian-grid-horizontal line,
.recharts-cartesian-grid-vertical line {
  stroke: rgba(148, 163, 184, 0.1);
}

.recharts-text {
  fill: #64748b;
}

.maplibregl-ctrl-attrib {
  background: rgba(26, 26, 46, 0.8) !important;
  backdrop-filter: blur(10px);
  border-radius: 8px !important;
  padding: 2px 8px !important;
}

.maplibregl-ctrl-attrib a {
  color: #00d4ff !important;
}

.maplibregl-popup-content {
  background: rgba(26, 26, 46, 0.95) !important;
  border: 1px solid rgba(148, 163, 184, 0.2) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
}

.maplibregl-popup-tip {
  border-top-color: rgba(26, 26, 46, 0.95) !important;
}
