satellite-chart {
  display: block;
  height: 100%;
}
satellite-chart .satellite-chart-container {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: border 0.3s ease;
}
satellite-chart .satellite-chart-container:hover {
  border-color: #444;
}
satellite-chart .chart-header {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #333;
  background: #222;
  border-radius: 8px 8px 0 0;
  flex-shrink: 0;
}
satellite-chart .chart-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  flex-grow: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
satellite-chart .chart-wrapper {
  padding: 20px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
satellite-chart .chart-wrapper canvas {
  max-height: 100%;
  width: 100% !important;
  height: 100% !important;
}/*# sourceMappingURL=satelliteChart.css.map */