/* Shared module page overrides and components — imported by all module index.html pages */

/* Override common.css module-page overflow:hidden for module content pages */
html, body { overflow: auto !important; height: auto !important; }
body { user-select: text !important; }

/* ── Info Panel for 3D Scene Interactions ── */
.scene-info-panel {
  position: absolute;
  background: rgba(13, 17, 23, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: #e0e0ec;
  font-size: 13px;
  line-height: 1.5;
  max-width: 280px;
  pointer-events: auto;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.scene-info-panel h4 {
  margin: 0 0 6px;
  font-size: 14px;
  color: #ffd166;
  font-weight: 600;
}
.scene-info-panel p {
  margin: 0;
  color: #b0b8c8;
}
.scene-info-panel .close-btn {
  position: absolute;
  top: 6px;
  right: 10px;
  cursor: pointer;
  color: #8892a4;
  font-size: 18px;
  line-height: 1;
  transition: color 0.15s;
}
.scene-info-panel .close-btn:hover {
  color: #e0e0ec;
}
