/* Keep Support Config visible for Global Admin navigation. */
[data-support-config-page] { display: flex !important; }
/* JET_GLOBAL_SUPPORT_CONFIG_WEB_1_8F5A */
.gsc-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(15, 23, 42, 0.72);
  overflow: auto;
  padding: 24px;
}
.gsc-overlay.hidden { display: none !important; }
.gsc-shell {
  max-width: 1280px;
  margin: 0 auto;
  background: #f8fafc;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.35);
  overflow: hidden;
}
.gsc-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px;
  background: linear-gradient(135deg, #0f2a16, #1e3b25);
  color: white;
}
.gsc-head h2 { margin: 4px 0; font-size: 30px; }
.gsc-head p { margin: 0; color: #cbd5e1; }
.gsc-head button,
.gsc-actions button,
.gsc-row-actions button {
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
}
.gsc-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 20px;
  padding: 24px;
}
.gsc-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 20px;
}
.gsc-card h3 { margin-top: 0; }
.gsc-card label {
  display: grid;
  gap: 6px;
  margin: 12px 0;
  font-weight: 700;
  color: #33553c;
}
.gsc-card input,
.gsc-card select,
.gsc-card textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
}
.gsc-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
}
.gsc-checks label,
.gsc-inline {
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.gsc-checks input,
.gsc-inline input { width: auto; }
.gsc-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.gsc-primary {
  border: 0;
  border-radius: 12px;
  background: #dc2626;
  color: white;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
}
.gsc-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.gsc-status {
  padding: 10px 24px;
  background: #ecfdf5;
  color: #166534;
  font-weight: 700;
}
.gsc-status.error {
  background: #fef2f2;
  color: #991b1b;
}
.gsc-list { margin-top: 18px; display: grid; gap: 10px; }
.gsc-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 13px;
}
.gsc-row small { display: block; margin-top: 4px; color: #648b6e; }
.gsc-row-actions { display: flex; gap: 6px; align-items: center; }
@media (max-width: 900px) {
  .gsc-grid { grid-template-columns: 1fr; }
  .gsc-overlay { padding: 0; }
  .gsc-shell { border-radius: 0; min-height: 100%; }
  .gsc-checks { grid-template-columns: 1fr; }
}