/* Container */
#rollup2 {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: #e7ebef;
  margin-bottom: 2em;
}

/* Map container */
.map-container2 {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left:5px;
padding-right:5px;
}

/* Map element */
#map2 {
  width: 100%;
  aspect-ratio: 5/3;
  max-width: 100%;
  height: auto;
  background: #e7ebef;
}

/* Optional map title overlay */
.map-title-overlay2 {
  position: absolute;
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5em 1em;
  background-color: rgba(255,255,255,0.8);
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #0032a0;
  z-index: 1000;
  text-align: center;
  max-width: 90%;
}

/* Legend styling */
.legend-container2 {
  position: absolute;
  top: 1em;
  right: 1em;
  padding: 10px;
  background-color: rgba(255,255,255,0.8);
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  z-index: 1000;
}

.legend-title2 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 5px;
}

.legend-bar2 {
  display: flex;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 5px;
}

.legend-color2 {
  flex: 1;
}

.legend-labels2 {
  display: flex;
  justify-content: space-between;
}

.legend-labels2 span {
  font-size: 10px;
  color: #333;
}

/* Info box */
#trade-info-box2 {
  position: absolute;
  top: 1em;
  left: 1em;
  box-sizing: border-box;
  padding: 15px;
  background: #e7ebef;
  border-radius: 4px;
  z-index: 900;
  pointer-events: none;
  display: none;
  max-width: 40%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .legend-container2 {
    top: 0.5em;
    right: 0.5em;
    font-size: 10px;
  }
  .legend-bar2 {
    height: 15px;
  }
  .legend-labels2 span {
    font-size: 8px;
  }
  #trade-info-box2 {
    max-width: 90%;
    padding: 10px;
    font-size: 0.9em;
  }
}
