/* Phase 6 — Reports & analytics */

.analytics-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 12px;
}

.bar-row .label {
  min-width: 140px;
  color: #445;
}

.bar-track {
  flex: 1;
  height: 10px;
  background: #eee6f4;
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #6a3b8b, #8b5cb5);
  border-radius: 999px;
}

.bar-row .val {
  min-width: 36px;
  text-align: left;
  font-weight: 700;
  color: var(--purple-deep);
}

.action-list {
  margin: 0;
  padding-right: 18px;
  font-size: 13px;
  line-height: 1.75;
  color: #334;
}

@media (max-width: 900px) {
  .analytics-layout {
    grid-template-columns: 1fr;
  }
}
