/* cignyl-sftp 20260824 */
/* ------------------------------ */
/* v2 Chart                       */
/* ------------------------------ */

.v2-theme .v2-chart {
  width: 100%;
}

.v2-theme .v2-chart__canvas-wrap {
  position: relative;
  width: var(--v2-chart-width, 100%);
  height: var(--v2-chart-height, 260px);
  min-height: 140px;
}

.v2-theme .v2-chart__canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.v2-theme .v2-chart--disabled-true {
  opacity: 0.6;
  pointer-events: none;
}

.v2-theme .v2-chart__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px dashed hsl(var(--border));
  background: hsl(var(--card) / 0.75);
  color: hsl(var(--card-foreground));
  padding: var(--v2-space-md);
}

.v2-theme .v2-chart__overlay-inner {
  max-width: 28rem;
  text-align: center;
}

.v2-theme .v2-chart__overlay-text {
  font-size: 0.95rem;
  line-height: 1.4;
  color: hsl(var(--muted-foreground));
}

