/* [project]/src/components/analytics/ServiceStatus.module.css [app-client] (css) */
.ServiceStatus-module__dWkakG__serviceStatus {
  color: var(--color-text-tertiary, #ffffff73);
  pointer-events: none;
  z-index: 1;
  transition: left var(--duration-slow, .3s) var(--easing-decelerate, ease-out);
  font-family: monospace;
  font-size: 10px;
  position: fixed;
  bottom: 4px;
}

@media (max-width: 1023px) {
  .ServiceStatus-module__dWkakG__serviceStatus {
    left: 8px !important;
  }
}

/* [project]/src/app/(analyse)/analyse/dashboard/page.module.css [app-client] (css) */
.page-module__0wcfSG__page {
  gap: var(--space-24);
  flex-direction: column;
  min-height: 100%;
  display: flex;
}

.page-module__0wcfSG__header {
  gap: var(--space-4);
  flex-direction: column;
  display: flex;
}

.page-module__0wcfSG__title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.page-module__0wcfSG__subtitle {
  color: #8090a0;
  font-size: 14px;
}

.page-module__0wcfSG__loadingBanner {
  padding: var(--space-12) var(--space-16);
  border-radius: var(--radius-medium);
  color: #8090a0;
  background: #0a84ff1a;
  border: 1px solid #0a84ff33;
  font-size: 13px;
  animation: 1.5s ease-in-out infinite page-module__0wcfSG__pulse;
}

@keyframes page-module__0wcfSG__pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .6;
  }
}

.page-module__0wcfSG__errorBanner {
  padding: var(--space-12) var(--space-16);
  border-radius: var(--radius-medium);
  color: #ff6b6b;
  background: #ff453a1a;
  border: 1px solid #ff453a33;
  font-size: 13px;
}

.page-module__0wcfSG__metricsRow {
  gap: var(--space-16);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

@media (max-width: 1024px) {
  .page-module__0wcfSG__metricsRow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .page-module__0wcfSG__metricsRow {
    grid-template-columns: 1fr;
  }
}

.page-module__0wcfSG__metricWrapper {
  flex-direction: column;
  display: flex;
}

.page-module__0wcfSG__clickableMetric {
  cursor: pointer;
  position: relative;
}

.page-module__0wcfSG__clickableMetric:hover .page-module__0wcfSG__drilldownHint {
  opacity: 1;
}

.page-module__0wcfSG__chartsRow {
  gap: var(--space-16);
  grid-template-columns: 1fr 1fr;
  display: grid;
}

@media (max-width: 900px) {
  .page-module__0wcfSG__chartsRow {
    grid-template-columns: 1fr;
  }
}

.page-module__0wcfSG__chartCard {
  padding: var(--space-20);
}

.page-module__0wcfSG__sectionTitle {
  color: #c0d0e0;
  margin-bottom: var(--space-4);
  font-size: 16px;
  font-weight: 600;
}

.page-module__0wcfSG__chartHint {
  color: #607080;
  margin-bottom: var(--space-12);
  font-size: 11px;
  font-style: italic;
}

.page-module__0wcfSG__chartArea {
  gap: var(--space-8);
  height: 180px;
  display: flex;
}

.page-module__0wcfSG__yAxis {
  color: #607080;
  text-align: right;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: space-between;
  width: 36px;
  padding-bottom: 22px;
  font-size: 11px;
  display: flex;
}

.page-module__0wcfSG__chartBody {
  border-bottom: 1px solid #ffffff0f;
  border-left: 1px solid #ffffff0f;
  flex: 1;
  position: relative;
}

.page-module__0wcfSG__lineChartGradient {
  border-radius: 0 0 var(--radius-medium) 0;
  background: linear-gradient(#0a84ff1f 0%, #0a84ff00 100%);
  position: absolute;
  inset: 0;
}

.page-module__0wcfSG__lineSvg {
  width: 100%;
  height: calc(100% - 22px);
  position: absolute;
  inset: 0;
}

.page-module__0wcfSG__xAxis {
  color: #607080;
  padding-top: var(--space-4);
  justify-content: space-between;
  font-size: 11px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.page-module__0wcfSG__xAxisActive {
  color: var(--atheryon-blue);
  font-weight: 700;
}

.page-module__0wcfSG__dataPointsOverlay {
  width: 100%;
  height: calc(100% - 22px);
  position: absolute;
  inset: 0;
}

.page-module__0wcfSG__dataPoint {
  background: var(--atheryon-blue);
  cursor: pointer;
  width: 14px;
  height: 14px;
  transition: transform var(--duration-fast) var(--easing-decelerate), box-shadow var(--duration-fast) var(--easing-decelerate);
  z-index: 2;
  border: 2px solid #0009;
  border-radius: 50%;
  padding: 0;
  position: absolute;
  transform: translate(-50%, -50%);
}

.page-module__0wcfSG__dataPoint:hover {
  transform: translate(-50%, -50%)scale(1.4);
  box-shadow: 0 0 12px #0a84ff80;
}

.page-module__0wcfSG__dataPointActive {
  border-color: var(--atheryon-blue);
  background: #fff;
  transform: translate(-50%, -50%)scale(1.4);
  box-shadow: 0 0 12px #0a84ff99;
}

.page-module__0wcfSG__donutArea {
  align-items: center;
  gap: var(--space-24);
  justify-content: center;
  min-height: 160px;
  display: flex;
}

.page-module__0wcfSG__donutSvg {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
}

.page-module__0wcfSG__donutSegment {
  cursor: pointer;
  transition: opacity var(--duration-fast) var(--easing-ease);
}

.page-module__0wcfSG__donutSegment:hover {
  opacity: .75;
  filter: brightness(1.2);
}

.page-module__0wcfSG__donutLegend {
  gap: var(--space-12);
  flex-direction: column;
  display: flex;
}

.page-module__0wcfSG__legendItem {
  align-items: center;
  gap: var(--space-8);
  display: flex;
}

.page-module__0wcfSG__legendClickable {
  cursor: pointer;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-small);
  transition: background var(--duration-fast) var(--easing-ease);
}

.page-module__0wcfSG__legendClickable:hover {
  background: #ffffff0a;
}

.page-module__0wcfSG__legendActive {
  background: #0a84ff1a;
}

.page-module__0wcfSG__legendDot {
  border-radius: 50%;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
}

.page-module__0wcfSG__legendLabel {
  color: #c0d0e0;
  font-size: 14px;
  font-weight: 500;
}

.page-module__0wcfSG__activityCard {
  padding: var(--space-20);
}

.page-module__0wcfSG__activityList {
  flex-direction: column;
  display: flex;
}

.page-module__0wcfSG__activityItem {
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-8) 0;
  border-bottom: 1px solid #ffffff0a;
  display: flex;
}

.page-module__0wcfSG__activityItem:last-child {
  border-bottom: none;
}

.page-module__0wcfSG__activityClickable {
  cursor: pointer;
  padding: var(--space-8) var(--space-8);
  margin: 0 calc(-1 * var(--space-8));
  border-radius: var(--radius-small);
  transition: background var(--duration-fast) var(--easing-ease);
}

.page-module__0wcfSG__activityClickable:hover {
  background: #0a84ff0a;
}

.page-module__0wcfSG__activityActive {
  background: #0a84ff0f;
  border-bottom-color: #0000;
}

.page-module__0wcfSG__activityTime {
  color: #607080;
  font-size: 12px;
  font-family: var(--font-mono);
  white-space: nowrap;
  min-width: 100px;
}

.page-module__0wcfSG__activityDesc {
  color: #a0b0c0;
  flex: 1;
  min-width: 0;
  font-size: 13px;
}

.page-module__0wcfSG__activityChevron {
  color: var(--atheryon-blue);
  flex-shrink: 0;
  margin-left: auto;
  font-size: 10px;
}

.page-module__0wcfSG__activityDrilldown {
  padding: var(--space-12) var(--space-16);
  margin: 0 calc(-1 * var(--space-8));
  border-radius: 0 0 var(--radius-medium) var(--radius-medium);
  animation: page-module__0wcfSG__fadeUp var(--duration-normal) var(--easing-decelerate) both;
  background: #ffffff05;
  border-bottom: 1px solid #ffffff0a;
}

@media (max-width: 600px) {
  .page-module__0wcfSG__activityItem {
    flex-wrap: wrap;
  }

  .page-module__0wcfSG__activityTime {
    min-width: unset;
  }
}

@keyframes page-module__0wcfSG__fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-module__0wcfSG__drilldownPanel {
  margin-top: var(--space-16);
  padding: var(--space-16);
  border-radius: var(--radius-medium);
  animation: page-module__0wcfSG__fadeUp var(--duration-normal) var(--easing-decelerate) both;
  background: #ffffff05;
  border: 1px solid #ffffff0f;
}

.page-module__0wcfSG__drilldownHeader {
  margin-bottom: var(--space-12);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.page-module__0wcfSG__drilldownTitle {
  color: #c0d0e0;
  font-size: 14px;
  font-weight: 600;
}

.page-module__0wcfSG__drilldownHint {
  color: #607080;
  text-align: center;
  margin-top: var(--space-4);
  opacity: 0;
  transition: opacity var(--duration-fast) var(--easing-ease);
  font-size: 10px;
  display: block;
}

.page-module__0wcfSG__explorerLink {
  color: var(--atheryon-blue);
  white-space: nowrap;
  transition: opacity var(--duration-fast) var(--easing-ease);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.page-module__0wcfSG__explorerLink:hover {
  opacity: .8;
}

.page-module__0wcfSG__drilldownSummary {
  gap: var(--space-12);
  margin-bottom: var(--space-16);
  padding: var(--space-12);
  border-radius: var(--radius-medium);
  background: #ffffff05;
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

@media (max-width: 800px) {
  .page-module__0wcfSG__drilldownSummary {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-module__0wcfSG__drilldownSummaryItem {
  gap: var(--space-4);
  flex-direction: column;
  display: flex;
}

.page-module__0wcfSG__drilldownSummaryLabel {
  color: #607080;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 11px;
  font-weight: 600;
}

.page-module__0wcfSG__drilldownValuePos {
  color: #34d399;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-mono);
}

.page-module__0wcfSG__drilldownValueNeg {
  color: #f87171;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-mono);
}

.page-module__0wcfSG__drilldownValueWarn {
  color: #f90;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-mono);
}

.page-module__0wcfSG__drilldownValueNet {
  color: var(--atheryon-blue);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-mono);
}

.page-module__0wcfSG__drilldownTable {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
}

.page-module__0wcfSG__drilldownTable th, .page-module__0wcfSG__drilldownTable td {
  padding: var(--space-8) var(--space-12);
  text-align: left;
  color: #a0b0c0;
  border-bottom: 1px solid #ffffff0a;
  font-size: 12px;
}

.page-module__0wcfSG__drilldownTable th {
  color: #607080;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 11px;
  font-weight: 600;
}

.page-module__0wcfSG__drilldownMono {
  font-family: var(--font-mono);
  color: #c0d0e0;
}

.page-module__0wcfSG__drilldownDetail {
  color: #8090a0;
  max-width: 300px;
  font-size: 12px;
}

.page-module__0wcfSG__drilldownComponentName {
  color: #c0d0e0;
  font-weight: 600;
}

.page-module__0wcfSG__confidenceBar {
  align-items: center;
  gap: var(--space-8);
  display: flex;
}

.page-module__0wcfSG__confidenceBarTrack {
  border-radius: var(--radius-small);
  background: #ffffff0a;
  flex: 1;
  min-width: 60px;
  height: 8px;
  overflow: hidden;
}

.page-module__0wcfSG__confidenceBarFill {
  background: linear-gradient(90deg, var(--atheryon-blue), #4bc0ff);
  border-radius: var(--radius-small);
  height: 100%;
  transition: width var(--duration-slow) var(--easing-decelerate);
}

.page-module__0wcfSG__qualityBars {
  gap: var(--space-8);
  flex-direction: column;
  display: flex;
}

.page-module__0wcfSG__qualityBar {
  align-items: center;
  gap: var(--space-8);
  grid-template-columns: 72px 1fr 48px;
  display: grid;
}

.page-module__0wcfSG__qualityBarLabel {
  color: #8090a0;
  font-size: 12px;
  font-weight: 600;
}

.page-module__0wcfSG__qualityBarTrack {
  border-radius: var(--radius-small);
  background: #ffffff0a;
  height: 16px;
  overflow: hidden;
}

.page-module__0wcfSG__qualityBarFillGreen {
  border-radius: var(--radius-small);
  height: 100%;
  transition: width var(--duration-slow) var(--easing-decelerate);
  background: linear-gradient(90deg, #34d399, #6ee7b7);
}

.page-module__0wcfSG__qualityBarFillOrange {
  border-radius: var(--radius-small);
  height: 100%;
  transition: width var(--duration-slow) var(--easing-decelerate);
  background: linear-gradient(90deg, #f90, #ffad33);
}

.page-module__0wcfSG__qualityBarFillRed {
  border-radius: var(--radius-small);
  height: 100%;
  transition: width var(--duration-slow) var(--easing-decelerate);
  background: linear-gradient(90deg, #f87171, #fca5a5);
}

.page-module__0wcfSG__qualityBarPct {
  font-size: 11px;
  font-family: var(--font-mono);
  color: #607080;
  text-align: right;
}

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