@tailwind base;
@tailwind components;
@tailwind utilities;

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: #090d16;
  color: #f8fafc;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.glass-panel {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.glass-panel-glow {
  background: rgba(10, 15, 29, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6), 0 0 25px 0 rgba(16, 185, 129, 0.2);
}

.dpad-btn {
  background: rgba(30, 41, 59, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.1s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.dpad-btn:active {
  background: rgba(16, 185, 129, 0.6) !important;
  border-color: #34d399 !important;
  transform: scale(0.92);
}

.project-marker-3d {
  transform: translate(-50%, -100%);
  will-change: transform;
}

.landmark-marker-3d {
  transform: translate(-50%, -100%);
  will-change: transform;
}

#streetview-container {
  width: 100%;
  height: 100%;
}

.pnlm-load-button {
  display: none !important;
}

.pnlm-panorama-info {
  background: rgba(15, 23, 42, 0.85) !important;
  border: 1px solid rgba(16, 185, 129, 0.4) !important;
  border-radius: 12px !important;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: rgba(16, 185, 129, 0.4);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(16, 185, 129, 0.8);
}
