/* VSWT Apps chrome — auth bar and sync status */

.app-auth-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius, 8px);
  background: var(--surface);
}

.app-auth-bar__account {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.app-auth-bar__email {
  color: var(--text-muted, var(--text));
  opacity: 0.85;
}

.app-sync-status {
  font-size: 0.85rem;
  color: var(--text-muted, var(--text));
}

.app-sync-status[data-status='syncing'] {
  opacity: 0.8;
}

.app-sync-status[data-status='error'] {
  color: var(--error, #c0392b);
}

.app-sync-status--dev-hint {
  max-width: 28rem;
  line-height: 1.35;
  color: var(--text-muted, var(--text));
}

.app-hub-link {
  font-size: 0.9rem;
}

.app-page .tool-privacy-badge {
  margin-bottom: 1rem;
}
