:root {
  --pp-bg-dark: #090A10;
  --pp-panel-border: #1f2937;
  --pp-text-muted: #6b7280;
  --pp-indigo: #6366F1;
  --pp-blue: #3B82F6;
  --pp-green: #10B981;
}

.pp-field {
  width: 100%;
  background: var(--pp-bg-dark);
  border: 1px solid var(--pp-panel-border);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease;
}

.pp-field::placeholder {
  color: #4b5563;
}

.pp-field:focus {
  border-color: rgba(99, 102, 241, 0.6);
}

.pp-select {
  cursor: pointer;
  color: #9ca3af;
}

.pp-select option {
  color: #9ca3af;
  background: #131520;
}

.pp-btn-primary {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--pp-indigo), var(--pp-blue));
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  transition: opacity 0.2s ease;
  border: none;
}

.pp-btn-primary:hover {
  opacity: 0.9;
}

.pp-btn-success {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--pp-indigo), var(--pp-green));
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  transition: opacity 0.2s ease;
  border: none;
}

.pp-btn-success:hover {
  opacity: 0.9;
}

.pp-btn-ghost {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid #374151;
  background: transparent;
  color: #d1d5db;
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 0.2s ease;
}

.pp-btn-ghost:hover {
  border-color: #6b7280;
}

.pp-inline-input {
  flex: 1;
  min-width: 180px;
  border: 1px solid #2a344e;
  background: #0d1529;
  color: #ecf2ff;
  border-radius: 10px;
  padding: 9px 10px;
}

.pp-panel-shell {
  background: #131520;
  border: 1px solid #202434;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.pp-subcard {
  background: #090A10;
  border: 1px solid rgba(32, 36, 52, 0.8);
  border-radius: 1rem;
  padding: 1rem;
  transition: border-color 0.2s ease;
}

.pp-preview-card {
  background: rgba(9, 10, 16, 0.9);
  border: 1px solid rgba(31, 41, 55, 0.6);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: border-color 0.2s ease;
}

.pp-page-shell {
  color: #f3f4f6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

.pp-page-shell-spread {
  justify-content: space-between;
}

.pp-ambient-a {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 9999px;
  background: rgba(99, 102, 241, 0.1);
  filter: blur(130px);
  pointer-events: none;
}

.pp-ambient-b {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 9999px;
  background: rgba(59, 130, 246, 0.1);
  filter: blur(160px);
  pointer-events: none;
}

.pp-topbar {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 1.5rem 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.pp-brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(to right, #60a5fa, #a5b4fc, #6366F1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pp-step-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pp-setup-chip {
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.pp-progress-wrap {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.pp-progress-track {
  width: 100%;
  background: #111827;
  height: 0.25rem;
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.pp-progress-fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--pp-indigo), var(--pp-green));
  transition: width 0.3s ease;
}

.pp-step-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pp-main-grid {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 10;
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: flex-start;
  padding-bottom: 3rem;
}

@media (min-width: 1024px) {
  .pp-main-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.pp-form-panel {
  grid-column: span 5 / span 5;
}

.pp-preview-col {
  grid-column: span 7 / span 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 100%;
}

@media (min-width: 1024px) {
  .pp-preview-col {
    position: sticky;
    top: 2rem;
  }
}

.pp-preview-shell {
  width: 100%;
  max-width: 42rem;
  background: #131520;
  border: 1px solid rgba(31, 41, 55, 0.8);
  border-radius: 2rem;
  padding: 1.25rem;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.pp-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(31, 41, 55, 0.6);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 10;
}

.pp-preview-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
  z-index: 10;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .pp-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pp-footer {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(17, 24, 39, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #6b7280;
  position: relative;
  z-index: 10;
}

.pp-shell-xl {
  background: #131520;
  border: 1px solid #202434;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.pp-shell-xl-grid {
  background: #131520;
  border: 1px solid #202434;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.pp-card {
  background: #090A10;
  border: 1px solid rgba(32, 36, 52, 0.8);
  border-radius: 1rem;
  padding: 1rem;
  transition: border-color 0.2s ease;
}

.pp-card-neon:hover { border-color: rgba(59, 130, 246, 0.4); }
.pp-card-purple:hover { border-color: rgba(99, 102, 241, 0.4); }
.pp-card-indigo:hover { border-color: rgba(129, 140, 248, 0.4); }
.pp-card-amber:hover { border-color: rgba(245, 158, 11, 0.4); }
.pp-card-green:hover { border-color: rgba(16, 185, 129, 0.4); }

.pp-card-blue {
  background: #090A10;
  border: 1px solid rgba(32, 36, 52, 0.8);
  border-radius: 1rem;
  padding: 1rem;
  transition: border-color 0.2s ease;
}

.pp-card-blue:hover { border-color: rgba(59, 130, 246, 0.4); }

.pp-card-purple-shell {
  background: #090A10;
  border: 1px solid rgba(32, 36, 52, 0.8);
  border-radius: 1rem;
  padding: 1rem;
  transition: border-color 0.2s ease;
}

.pp-card-purple-shell:hover { border-color: rgba(99, 102, 241, 0.4); }

.pp-card-indigo-shell {
  background: #090A10;
  border: 1px solid rgba(32, 36, 52, 0.8);
  border-radius: 1rem;
  padding: 1rem;
  transition: border-color 0.2s ease;
}

.pp-card-indigo-shell:hover { border-color: rgba(129, 140, 248, 0.4); }

.pp-card-amber-shell {
  background: #090A10;
  border: 1px solid rgba(32, 36, 52, 0.8);
  border-radius: 1rem;
  padding: 1rem;
  transition: border-color 0.2s ease;
}

.pp-card-amber-shell:hover { border-color: rgba(245, 158, 11, 0.4); }

.pp-card-green-shell {
  background: #090A10;
  border: 1px solid rgba(32, 36, 52, 0.8);
  border-radius: 1rem;
  padding: 1rem;
  transition: border-color 0.2s ease;
}

.pp-card-green-shell:hover { border-color: rgba(16, 185, 129, 0.4); }

@media (min-width: 640px) {
  .pp-footer {
    flex-direction: row;
  }
}

.pp-main-layout {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 10;
  flex-grow: 1;
}

.pp-main-layout-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: flex-start;
  padding-bottom: 3rem;
}

.pp-main-layout-tabs {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pp-main-layout-flow {
  display: block;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pp-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.pp-section-copy {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.pp-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pp-control-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.pp-tab-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.pp-tab-btn--inactive {
  color: #9ca3af;
}

.pp-tab-btn--inactive:hover {
  color: #ffffff;
}

.pp-tab-btn--active {
  background: #131520;
  border: 1px solid #202434;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ambient-glow-top {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 800px;
  height: 800px;
  border-radius: 9999px;
  background: rgba(99, 102, 241, 0.05);
  filter: blur(150px);
  pointer-events: none;
}

.ambient-glow-bottom {
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 800px;
  height: 800px;
  border-radius: 9999px;
  background: rgba(59, 130, 246, 0.05);
  filter: blur(160px);
  pointer-events: none;
}

.pp-toast {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: #131520;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
  transform: translateY(3rem);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.pp-toast--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.pp-toast-icon {
  padding: 0.375rem;
  border-radius: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.pp-toast-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #10B981;
}

.pp-toast-msg {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.pp-navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(31, 41, 55, 0.8);
  background: rgba(19, 21, 32, 0.5);
  backdrop-filter: blur(12px);
}

.pp-nav-wrapper {
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .pp-nav-wrapper {
    flex-direction: row;
  }
}

.pp-logo-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pp-logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top right, var(--pp-indigo), var(--pp-blue));
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.pp-logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(to right, #60a5fa, #a5b4fc, #6366F1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pp-logo-sub {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
}

.pp-tab-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem;
  border: 1px solid rgba(31, 41, 55, 1);
  border-radius: 1rem;
  background: rgba(9, 10, 16, 0.8);
}

.pp-user-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pp-streak-badge {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(31, 41, 55, 0.6);
  background: var(--pp-bg-dark);
  font-size: 0.6875rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .pp-streak-badge {
    display: flex;
  }
}

.pp-streak-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #10B981;
  animation: pulse 2s infinite;
}

.pp-profile-meta {
  display: none;
  text-align: right;
}

@media (min-width: 640px) {
  .pp-profile-meta {
    display: block;
  }
}

.pp-profile-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}

.pp-profile-status {
  font-size: 0.625rem;
  color: #10B981;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pp-logout-btn {
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(239, 68, 68, 0.3);
  background: rgba(220, 38, 38, 0.1);
  color: #f87171;
  transition: all 0.2s ease;
}

.pp-logout-btn:hover {
  border-color: rgba(239, 68, 68, 0.6);
  background: rgba(220, 38, 38, 0.2);
  color: #fca5a5;
}

.pp-layout-left {
  grid-column: span 5 / span 5;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pp-layout-right {
  grid-column: span 7 / span 7;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pp-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pp-panel-date {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--pp-panel-border);
  background: var(--pp-bg-dark);
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.pp-panel-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pp-subcard-header,
.pp-metric-header,
.pp-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.pp-subcard-title-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pp-subcard-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d1d5db;
}

.pp-subcard-target {
  font-size: 0.625rem;
  color: #6b7280;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.pp-subcard-icon-blue,
.pp-subcard-icon-purple,
.pp-subcard-icon-indigo {
  padding: 0.375rem;
  border-radius: 0.5rem;
}

.pp-subcard-icon-blue { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
.pp-subcard-icon-purple { background: rgba(99, 102, 241, 0.1); color: #6366F1; }
.pp-subcard-icon-indigo { background: rgba(129, 140, 248, 0.1); color: #818cf8; }

.pp-hydration-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pp-fluid-display {
  width: 3rem;
  height: 4rem;
  border: 2px dashed #374151;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.pp-fluid-bar {
  width: 100%;
  background: linear-gradient(to top, #2563eb, #38bdf8);
  transition: height 0.5s ease;
}

.pp-fluid-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5625rem;
  font-weight: 700;
  color: #ffffff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.pp-sleep-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.pp-sleep-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.625rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(31, 41, 55, 0.5);
  background: rgba(19, 21, 32, 0.5);
}

.pp-layout-right .pp-shell-xl-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 1024px) {
  .pp-layout-right .pp-shell-xl-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.pp-ring-shell {
  grid-column: span 4 / span 4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pp-ring-container {
  position: relative;
  width: 8rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.pp-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pp-ring-score {
  font-size: 1.875rem;
  font-weight: 800;
  color: #ffffff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: -0.05em;
}

.pp-ring-label {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #9ca3af;
}

.pp-meta-shell {
  grid-column: span 8 / span 8;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pp-zone-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pp-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(31, 41, 55, 0.6);
}

.pp-meta-title {
  font-size: 0.625rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pp-meta-value {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #e5e7eb;
}

.pp-telemetry-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pp-telemetry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pp-metric-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pp-metric-title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.pp-metric-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.pp-metric-subtext {
  font-size: 0.75rem;
  font-weight: 400;
  color: #6b7280;
}

.pp-metric-copy {
  margin-top: 0.5rem;
  line-height: 1.4;
  color: #9ca3af;
}

.pp-metric-footer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(31, 41, 55, 0.6);
}

.pp-progress-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.625rem;
}

.pp-progress-rail {
  width: 100%;
  height: 0.375rem;
  margin-top: 0.375rem;
  border-radius: 9999px;
  overflow: hidden;
  background: #090A10;
}

.pp-chart-header {
  margin-bottom: 1.5rem;
}

.pp-chart-legend {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pp-chart-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: #6366F1;
}

.pp-chart-area {
  position: relative;
  width: 100%;
  height: 12rem;
  display: flex;
  align-items: flex-end;
}

.pp-chart-tooltip {
  position: absolute;
  top: 1rem;
  left: 46%;
  transform: translateX(-50%);
  padding: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--pp-panel-border);
  background: var(--pp-bg-dark);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  font-size: 0.625rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  z-index: 20;
}

.pp-chart-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 41, 55, 0.6);
  font-size: 0.625rem;
  color: #6b7280;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

@media (min-width: 1024px) {
  .pp-main-layout-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .pp-main-layout-tabs {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
