/* [project]/plugins/chartjs/src/assets/css/pie-chart.css [app-client] (css) */
.pie-chart-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pie-chart {
  position: relative;
  flex-grow: 1;
}

.chart-title {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.2rem;
  text-align: left;
}

.chart-description {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: #666;
  text-align: left;
}

.chart-heading {
  font-size: 1.2rem;
  text-align: center;
  margin: 0;
}

.chart-labels-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
  position: relative;
}

.chart-labels-scroll-container {
  width: 100%;
  overflow-x: auto;
  padding: 5px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.chart-labels-scroll-container::-webkit-scrollbar {
  display: none;
}

.scroll-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  border-radius: 4px;
  color: #9ca3af;
  font-size: 18px;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
  margin: 0 8px;
  border: none;
  outline: none;
}

.scroll-button:hover {
  background-color: #e0e0e0;
}

.scroll-button:active {
  transform: scale(.95);
}

.scroll-button:focus {
  border: none;
  outline: none;
}

.chart-labels-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  min-width: min-content;
}

.chart-label-item {
  display: flex;
  align-items: center;
  margin-right: 12px;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.chart-label-item.inactive {
  opacity: .7;
}

.color-indicator {
  width: 30px;
  height: 14px;
  border-radius: 4px;
  margin-right: 6px;
  display: inline-block;
  transition: background-color .2s;
}

.label-text {
  font-size: .85rem;
  font-weight: 500;
  transition: color .2s;
}

@media (prefers-color-scheme: dark) {
  .chart-description {
    color: #aaa;
  }

  .chart-label-item {
    background-color: #333;
    border-color: #555;
  }

  .chart-label-item:hover {
    background-color: #444;
  }

  .chart-label-item.inactive {
    background-color: #2a2a2a;
  }

  .scroll-button {
    background-color: #444;
    border-color: #555;
    color: #ddd;
  }

  .scroll-button:hover {
    background-color: #555;
  }
}


/* [project]/plugins/chartjs/src/assets/css/line-chart.css [app-client] (css) */
.line-chart-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.line-chart {
  position: relative;
  flex-grow: 1;
}

.chart-title {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.2rem;
  text-align: left;
}

.chart-description {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: #666;
  text-align: left;
}

@media (prefers-color-scheme: dark) {
  .chart-description {
    color: #aaa;
  }
}


/* [project]/plugins/chartjs/src/assets/css/bar-chart.css [app-client] (css) */
.bar-chart-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.chart-wrapper.bar-chart {
  position: relative;
  flex-grow: 1;
}

.chart-title {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.2rem;
  text-align: left;
}

.chart-description {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: #666;
  text-align: left;
}

@media (prefers-color-scheme: dark) {
  .chart-description {
    color: #aaa;
  }
}


/* [project]/plugins/chartjs/src/assets/css/bar-line-chart.css [app-client] (css) */
.bar-line-chart-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.chart-wrapper.bar-line-chart {
  position: relative;
  flex-grow: 1;
}

.chart-title {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.2rem;
  text-align: left;
}

.chart-description {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: #666;
  text-align: left;
}

@media (prefers-color-scheme: dark) {
  .chart-description {
    color: #aaa;
  }
}


/* [project]/plugins/chartjs/src/assets/css/radar-chart.css [app-client] (css) */
.radar-chart-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.radar-chart {
  position: relative;
  flex-grow: 1;
}

.chart-title {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.2rem;
  text-align: left;
}

.chart-description {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: #666;
  text-align: left;
}

@media (prefers-color-scheme: dark) {
  .chart-description {
    color: #aaa;
  }
}


/* [project]/plugins/chartjs/src/assets/css/bubble-chart.css [app-client] (css) */
.bubble-chart-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bubble-chart {
  position: relative;
  flex-grow: 1;
}

.chart-title {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.2rem;
  text-align: left;
}

.chart-description {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: #666;
  text-align: left;
}

@media (prefers-color-scheme: dark) {
  .chart-description {
    color: #aaa;
  }
}


/* [project]/plugins/chartjs/src/assets/css/polar-area-chart.css [app-client] (css) */
.polar-area-chart-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.polar-area-chart {
  position: relative;
  flex-grow: 1;
}

.chart-title {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.2rem;
  text-align: left;
}

.chart-description {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: #666;
  text-align: left;
}

.chart-heading {
  font-size: 1.2rem;
  text-align: center;
  margin: 0;
}

.chart-labels-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
  position: relative;
}

.chart-labels-scroll-container {
  width: 100%;
  overflow-x: auto;
  padding: 5px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.chart-labels-scroll-container::-webkit-scrollbar {
  display: none;
}

.scroll-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  border-radius: 4px;
  color: #9ca3af;
  font-size: 18px;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
  margin: 0 4px;
  border: none;
  outline: none;
}

.scroll-button:hover {
  background-color: #e0e0e0;
}

.scroll-button:active {
  transform: scale(.95);
}

.scroll-button:focus {
  border: none;
  outline: none;
}

.chart-labels-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  min-width: min-content;
}

.chart-label-item {
  display: flex;
  align-items: center;
  margin-right: 12px;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.chart-label-item.inactive {
  opacity: .7;
}

.color-indicator {
  width: 30px;
  height: 14px;
  border-radius: 4px;
  margin-right: 6px;
  display: inline-block;
  transition: background-color .2s;
}

.label-text {
  font-size: .85rem;
  font-weight: 500;
  transition: color .2s;
}

@media (prefers-color-scheme: dark) {
  .chart-description {
    color: #aaa;
  }

  .chart-label-item {
    background-color: #333;
    border-color: #555;
  }

  .chart-label-item:hover {
    background-color: #444;
  }

  .chart-label-item.inactive {
    background-color: #2a2a2a;
  }

  .scroll-button {
    background-color: #444;
    border-color: #555;
    color: #ddd;
  }

  .scroll-button:hover {
    background-color: #555;
  }
}


/* [project]/plugins/chartjs/src/assets/css/scatter-chart.css [app-client] (css) */
.scatter-chart-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.scatter-chart {
  position: relative;
  flex-grow: 1;
}

.chart-title {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.2rem;
  text-align: left;
}

.chart-description {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: #666;
  text-align: left;
}

@media (prefers-color-scheme: dark) {
  .chart-description {
    color: #aaa;
  }
}


/* [project]/plugins/chartjs/src/assets/css/doughnut-chart.css [app-client] (css) */
.doughnut-chart-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.doughnut-chart {
  position: relative;
  flex-grow: 1;
}

.chart-title {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.2rem;
  text-align: left;
}

.chart-description {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: #666;
  text-align: left;
}

.chart-heading {
  font-size: 1.2rem;
  text-align: center;
  margin: 0;
}

.chart-labels-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
  position: relative;
}

.chart-labels-scroll-container {
  width: 100%;
  overflow-x: auto;
  padding: 5px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.chart-labels-scroll-container::-webkit-scrollbar {
  display: none;
}

.scroll-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  color: #9ca3af;
  font-size: 18px;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
  margin: 0 4px;
  border: none;
  outline: none;
}

.scroll-button:hover {
  background-color: #e0e0e0;
}

.scroll-button:active {
  transform: scale(.95);
}

.scroll-button:focus {
  border: none;
  outline: none;
}

.chart-labels-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  min-width: min-content;
}

.chart-label-item {
  display: flex;
  align-items: center;
  margin-right: 12px;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.chart-label-item.inactive {
  opacity: .7;
}

.color-indicator {
  width: 30px;
  height: 14px;
  border-radius: 4px;
  margin-right: 6px;
  display: inline-block;
  transition: background-color .2s;
}

.label-text {
  font-size: .85rem;
  font-weight: 500;
  transition: color .2s;
}

@media (prefers-color-scheme: dark) {
  .chart-description {
    color: #aaa;
  }

  .chart-label-item {
    background-color: #333;
    border-color: #555;
  }

  .chart-label-item:hover {
    background-color: #444;
  }

  .chart-label-item.inactive {
    background-color: #2a2a2a;
  }

  .scroll-button {
    background-color: #444;
    border-color: #555;
    color: #ddd;
  }

  .scroll-button:hover {
    background-color: #555;
  }
}


/* [project]/plugins/chartjs/src/assets/css/stack-chart.css [app-client] (css) */
.stack-chart-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stack-chart {
  position: relative;
  flex-grow: 1;
}

.chart-title {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.2rem;
  text-align: left;
}

.chart-description {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: #666;
  text-align: left;
}

@media (prefers-color-scheme: dark) {
  .chart-description {
    color: #aaa;
  }
}


/* [project]/plugins/chartjs/src/assets/css/heatmap-chart.css [app-client] (css) */
.heatmap-chart-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.heatmap-chart {
  position: relative;
  flex-grow: 1;
}

.chart-title {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.2rem;
  text-align: left;
}

.chart-description {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: #666;
  text-align: left;
}

.heatmap-tooltip {
  position: absolute;
  padding: 8px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  background: #fffffff2;
  border: 1px solid #ddd;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  z-index: 10;
  box-shadow: 0 2px 4px #0000001a;
}

@media (prefers-color-scheme: dark) {
  .chart-description {
    color: #aaa;
  }

  .heatmap-tooltip {
    background: #1e1e1ef2;
    color: #eaeaea;
    border-color: #444;
  }

  .heatmap-chart-container.dark-mode .x-axis-label, .heatmap-chart-container.dark-mode .y-axis-label, .heatmap-chart-container.dark-mode .legend-title {
    fill: #eaeaea;
  }
}


/* [project]/plugins/chartjs/src/assets/css/floating-chart.css [app-client] (css) */
.floating-chart-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.floating-chart {
  position: relative;
  flex-grow: 1;
  background-color: #0000;
}

.chart-metadata {
  margin-bottom: 1rem;
}

.chart-title {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.2rem;
  text-align: left;
}

.chart-description {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: #666;
  text-align: left;
}

@media (prefers-color-scheme: dark) {
  .chart-description {
    color: #aaa;
  }

  .floating-chart {
    background-color: #0000;
  }

  .floating-chart-container canvas {
    filter: brightness(.9);
  }
}


/*# sourceMappingURL=plugins_chartjs_src_assets_css_46c92a._.css.map*/
