/* ==========================================================================
   DASHBOARD SPECIFIC STYLES (css/pages/dashboard.css)
   ========================================================================== */

.dash-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .dash-grid {
    grid-template-columns: 1fr;
  }
}

.pipeline-bar-row {
  margin-bottom: 14px;
}

.pipeline-bar-track {
  background: var(--border-light);
  border-radius: 6px;
  height: 9px;
  overflow: hidden;
  margin-top: 6px;
}

.pipeline-bar-fill {
  background: var(--blue-primary);
  height: 100%;
  border-radius: 6px;
  transition: width 0.4s ease;
}

.integration-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.integration-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  background: var(--bg-surface);
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.chip-dot.on { background: var(--success); }
.chip-dot.off { background: var(--text-tertiary); }
.chip-dot.warn { background: var(--warning); }

.activity-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}
.activity-row:last-child {
  border-bottom: none;
}