:root {
  --theme-background: #3b0764;
  --theme-button: #374151;
  --theme-button-hover: #4b5563;
}
body {
  background: #111827; /* bg-gray-900 */
  font-family: 'Google Sans Text', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.leaflet-container {
  background: transparent;
}
#root {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none; /* Pass clicks through by default, components will enable them as needed */
  z-index: 20;
}
#home-shell {
  background: var(--theme-background); /* deep purple */
  display: flex; /* Shown by default */
}
.rotate-180 {
  transform: rotate(180deg);
}