.page-eyebrow,
.panel__eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 6px;
}

.page-description {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 15px;
}

.btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.btn--primary {
  background: var(--primary);
  color: white;
}

.btn--primary:hover {
  background: var(--primary-hover);
}

.status-chip {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #166534;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.status-dot--success {
  background: var(--success);
}

.last-update {
  color: var(--text-secondary);
  font-size: 14px;
}

.summary-card,
.panel,
.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.summary-card {
  border-radius: var(--radius-lg);
  padding: 20px;
}

.summary-card__label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.summary-card__value {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.summary-card__value--success {
  color: var(--success);
}

.summary-card__value--warning {
  color: var(--warning);
}

.summary-card__value--danger {
  color: var(--danger);
}

.panel {
  border-radius: var(--radius-lg);
  padding: 20px;
}

.panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.panel__title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 4px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.badge--success {
  background: #dcfce7;
  color: #166534;
}

.badge--warning {
  background: #fef3c7;
  color: #92400e;
}

.badge--danger {
  background: #fee2e2;
  color: #991b1b;
}

.badge--neutral {
  background: #e2e8f0;
  color: #334155;
}

.empty-state {
  color: var(--text-secondary);
  font-size: 15px;
  padding: 12px 0;
}

.mini-status-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mini-status {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #1e3a8a;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}