#container {
  display: flex;
}

#bubble-chart-container {
  flex: 1;
}

#detail-card-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#bubble-chart {
  width: 500px;
  height: 500px;
  position: relative;
  margin: 20px auto;
  border-radius: 50%;
  overflow: hidden;
}

.bubble {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  cursor: pointer;
}

.bubble img {
  width: 100%;
  height: auto;
}

#detail-card {
  width: 100%;
  height: 800px; /* Adjusted to auto for flexible height */
  background-color: white;
  border: 1px solid black;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
