/* Reset margins, paddings and set box-sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background-color: #000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

/* Center the globe container using flexbox */
body {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Styling for the globe container */
#chartdiv {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  z-index: 1;
}

/* Custom Tooltip Styling */
.am5-tooltip-container {
  pointer-events: none;
}
