/* Integraciones · sección Configuración (S 27m) */
.cfg-integ-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.cfg-integ-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.cfg-integ-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}
.cfg-integ-card label {
  font-weight: 500;
  color: var(--text-2);
}
.cfg-integ-card input {
  margin-top: 4px;
}
.cfg-integ-card a {
  color: var(--primary);
  text-decoration: none;
}
.cfg-integ-card a:hover {
  text-decoration: underline;
}

.cfg-info-btn {
  background: #eef2ff;
  color: #4338ca;
  border: 1px solid #c7d2fe;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  margin-left: 6px;
  vertical-align: 1px;
  padding: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cfg-info-btn:hover { background: #c7d2fe; }

/* OAuth status pill */
.oauth-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 500;
}
.oauth-pill.connected { background: #d1fae5; color: #065f46; }
.oauth-pill.error     { background: #fee2e2; color: #991b1b; }
.oauth-pill.pending   { background: #fef3c7; color: #92400e; }

.cfg-oauth-actions {
  display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap;
}
