.parent-shell {
  min-height: 100vh;
  padding: 32px 24px 48px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  color: #172033;
}

.parent-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 24px;
  max-width: 1100px;
}

.parent-header h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-top: 6px;
}

.parent-summary-grid {
  max-width: 1100px;
  margin: 0 auto 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.summary-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}

.summary-card strong {
  font-size: 2rem;
}

.timeline {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
}

.timeline-bullet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.timeline-bullet.activity { background: #3b82f6; }
.timeline-bullet.payment { background: #14b8a6; }
.timeline-bullet.message { background: #f59e0b; }
.timeline-bullet.health { background: #7c3aed; }

.timeline-item span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.8rem;
}

@media (max-width: 640px) {
  .parent-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
