<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS for bubble chart */
.bubble {
  fill: #4e79a7; /* Gradient color */
  opacity: 0.9;
  filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.3)); /* Add drop shadow */
  transition: transform 0.5s ease; /* Add transition for smoother animation */
}

.text {
  fill: white;
  font-size: 14px;
  font-weight: bold;
  text-anchor: middle;
}

/* Gradient for bubbles */
.bubble-gradient {
  fill: url(#gradient); /* Apply gradient */
}

/* Slider styling */
.slider-container {
  margin-top: 20px;
}

.slider {
  -webkit-appearance: none;
  margin-left: 20px;
  width: 30%;
  height: 10px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}

.triangle {
  /*stroke-dasharray: 1000; */
  stroke-dasharray: 5 10;
  stroke-dashoffset: 1000;
  animation: dash 40s linear 0s infinite;

}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

.bubble{
  cursor: pointer;
}

.mylabel{
  cursor: pointer;
}

.corner_label{
  cursor: pointer;  
}

.invis{
  display:none;
}

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center;
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 4s linear infinite;
  -moz-animation: rotating 4s linear infinite;
  -ms-animation: rotating 4s linear infinite;
  -o-animation: rotating 4s linear infinite;
  animation: rotating 4s linear infinite;
}
</pre></body></html>