/* Basic styles for the body and container */
body {
  background-color: #f0f0f0;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

/* Layout styles for the content, left panel, and right panel */
.content {
  display: flex;
  margin-top: 20px;
}

.left-panel, .right-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.left-panel {
  margin-right: 20px;
}

/* Styles for the titles */
.title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000000;
}

.general-title {
  font-size: 32px;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 30px;
  color: #000000;
}

/* Styles for the SVG elements */
svg {
  display: block;
  margin: 0 auto;
}

/* Styles for the year and map selectors */
.year-selector, .map-selector {
  margin-top: 20px;
}

.year-selector label, .map-selector label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.year-selector select, .map-selector input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Styles for the map container and maps */
.map-container {
  width: 800px;
  height: 600px;
  position: relative;
}

#map-1, #map-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Styles for the tooltip */
.tooltip {
  position: absolute;
  text-align: center;
  width: 120px;
  height: auto;
  padding: 8px;
  font: 12px sans-serif;
  background: #f4f4f4;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  pointer-events: none;
}

/* Additional styles for the volcano spikes and chart */
.volcano-spike {
  fill: #8B0000;
  stroke: #8B0000;
  stroke-width: 1;
  fill-opacity: 0.5;
}

#chart {
  margin-top: 20px;
}
