
.dash-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.dash-dashboard {
  position: relative;
  width: 900px;
  border-radius: 28px;
  padding: 32px 32px 36px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.15), transparent 55%),
    radial-gradient(circle at bottom right, rgba(129, 140, 248, 0.18), transparent 55%),
    linear-gradient(145deg, #020617 0%, #020617 35%, #020617 100%);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.9), 0 0 0 1px rgba(148, 163, 184, 0.18);
}

.dash-dashboard-inner {
  position: relative;
  z-index: 1;
}

.dash-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.dash-logo-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-logo {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-title-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #e5e7eb;
}

.dash-chip {
  border: 0;
  outline: 0;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dash-chip-light {
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.4);
}

.dash-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.3);
}

.dash-metric {
  text-align: center;
  margin-bottom: 18px;
}

.dash-metric-main {
  font-size: 56px;
  font-weight: 600;
  color: #f9fafb;
}

.dash-metric-subtitle {
  margin-top: 6px;
  color: #9ca3af;
  font-size: 15px;
}

.dash-metric-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(59, 130, 246, 0.9));
  box-shadow: 0 0 0 1px rgba(147, 197, 253, 0.5), 0 18px 35px rgba(37, 99, 235, 0.6);
  font-size: 13px;
  color: #eff6ff;
}

.dash-pill-arrow {
  font-weight: 700;
  margin-right: 4px;
}

.dash-pill-text {
  font-weight: 500;
}

.dash-chart-wrapper {
  margin-top: 10px;
  position: relative;
  height: 280px;
}

.dash-floating-card {
  position: absolute;
  z-index: 3;
  border-radius: 18px;
  padding: 14px 18px;
  min-width: 220px;
  background: linear-gradient(266.67deg, rgba(1, 72, 222, 0.6), rgba(3, 3, 6, 0.4));
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.95), 0 0 0 1px rgba(148, 163, 184, 0.35);
  backdrop-filter: blur(28px);
}

.dash-floating-top-right {
  top: -70px;
  right: 160px;
}
@media (max-width: 768px) {
  .dash-floating-top-right,
  .dash-floating-left {
    display: none !important;
  }
}

.dash-floating-left {
  left: -100px;
  top: 150px;
}

.dash-floating-label,
.dash-floating-small-label {
  font-size: 13px;
  color: #cbd5f5;
}

.dash-floating-value {
  font-size: 24px;
  font-weight: 600;
  color: #f9fafb;
}

.dash-floating-sub {
  font-size: 13px;
  color: #cbd5f5;
}

.dash-hover-card {
  position: absolute;
  z-index: 10;
  transform: translate(-50%, -15px);
  pointer-events: none;
  border-radius: 18px;
  padding: 14px 18px;
  min-width: 220px;
  background: linear-gradient(135deg, rgba(30, 40, 70, 0.55), rgba(10, 14, 25, 0.65));
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.95), 0 0 0 1px rgba(148, 163, 184, 0.35);
  backdrop-filter: blur(28px);
  display: none;
}