/**
 * hi-global-ui.css  —  HI Platform · Global Design System
 * Buttons · Inputs · Selects · Labels · Empty States
 *
 * Philosophy (Moodboard v1.0): Lean · Clean · Powerful
 * Signal over noise. Calm authority. No decorative chrome.
 *
 * Loaded last — overrides component-level defaults globally.
 *
 * Token sources: css/theme-system.css
 */

/* ============================================================
   SECTION 1  —  SHARED BUTTON FOUNDATION
   All button variants start here: font, cursor, flex layout.
   ============================================================ */

.gcc-btn-hero,
.gcc-btn-apply,
.gcc-btn-secondary,
.gcc-btn-submit,
.hira-btn,
.hira-btn-primary,
.hira-btn-ghost,
.mb-btn-navy,
.mb-btn-outline,
.mb-btn-ghost,
.hi-btn,
.hi-btn-primary,
.hi-btn-secondary {
  font-family: var(--font-body, 'Poppins', system-ui, sans-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.14s ease,
              box-shadow 0.14s ease,
              transform 0.14s ease,
              border-color 0.14s ease,
              color 0.14s ease;
}


/* ============================================================
   SECTION 2  —  PRIMARY CTA  (Signal Blue)
   .gcc-btn-hero  /  .gcc-btn-apply  /  .gcc-btn-submit
   ============================================================ */

.gcc-btn-hero,
.gcc-btn-apply {
  gap: 10px;
  padding: 13px 28px;
  font-size: 15px;
  color: #fff;
  background: var(--hi-blue, #2563eb);
  border-radius: var(--radius-sm, 8px);
  border: none;
  box-shadow:
    0 1px 2px rgba(37, 99, 235, 0.08),
    0 4px 14px rgba(37, 99, 235, 0.22);
  line-height: 1.2;
}

.gcc-btn-hero:hover,
.gcc-btn-apply:hover {
  background: #1d4ed8;
  box-shadow:
    0 2px 4px rgba(37, 99, 235, 0.12),
    0 8px 22px rgba(37, 99, 235, 0.30);
  transform: translateY(-1px);
  color: #fff;
}

.gcc-btn-hero:active,
.gcc-btn-apply:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(37, 99, 235, 0.12);
}

.gcc-btn-submit {
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  color: #fff;
  background: var(--hi-blue, #2563eb);
  border-radius: var(--radius-sm, 8px);
  border: none;
  box-shadow:
    0 1px 2px rgba(37, 99, 235, 0.08),
    0 4px 14px rgba(37, 99, 235, 0.22);
  line-height: 1.2;
  width: 100%;
}

.gcc-btn-submit:hover:not(:disabled) {
  background: #1d4ed8;
  box-shadow:
    0 2px 4px rgba(37, 99, 235, 0.12),
    0 8px 22px rgba(37, 99, 235, 0.30);
  transform: translateY(-1px);
}

.gcc-btn-submit:active:not(:disabled) {
  transform: translateY(0);
}

.gcc-btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}


/* ============================================================
   SECTION 3  —  SECONDARY / OUTLINE
   .gcc-btn-secondary  /  .mb-btn-outline
   ============================================================ */

.gcc-btn-secondary,
.mb-btn-outline {
  gap: 10px;
  padding: 12px 24px;
  font-size: 15px;
  color: var(--hi-navy, #0d1b2a);
  background: #fff;
  border: 1.5px solid var(--hi-border, rgba(15, 23, 42, 0.12));
  border-radius: var(--radius-sm, 8px);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  line-height: 1.2;
}

.gcc-btn-secondary:hover,
.mb-btn-outline:hover {
  border-color: rgba(15, 23, 42, 0.22);
  background: var(--hi-bg2, #f1f5f9);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  color: var(--hi-navy, #0d1b2a);
}

.gcc-btn-secondary:active,
.mb-btn-outline:active {
  transform: translateY(0);
}

/* Hero context: white on navy bg */
.gcc-hero .gcc-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.gcc-hero .gcc-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}


/* ============================================================
   SECTION 4  —  NAVY AUTHORITY  (.mb-btn-navy)
   ============================================================ */

.mb-btn-navy {
  gap: 10px;
  padding: 13px 28px;
  font-size: 15px;
  color: #fff;
  background: var(--hi-navy, #0d1b2a);
  border: none;
  border-radius: var(--radius-sm, 8px);
  box-shadow:
    0 1px 2px rgba(13, 27, 42, 0.1),
    0 4px 12px rgba(13, 27, 42, 0.14);
  line-height: 1.2;
}

.mb-btn-navy:hover {
  background: var(--hi-navy-mid, #1a2f4a);
  transform: translateY(-1px);
  box-shadow:
    0 2px 4px rgba(13, 27, 42, 0.12),
    0 8px 20px rgba(13, 27, 42, 0.18);
  color: #fff;
}


/* ============================================================
   SECTION 5  —  GHOST  (.mb-btn-ghost)
   ============================================================ */

.mb-btn-ghost {
  gap: 8px;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--hi-blue, #2563eb);
  background: transparent;
  border: none;
  border-radius: var(--radius-sm, 8px);
  line-height: 1.2;
}

.mb-btn-ghost:hover {
  background: rgba(37, 99, 235, 0.07);
  color: var(--hi-navy, #0d1b2a);
}


/* ============================================================
   SECTION 6  —  DASHBOARD BUTTONS  (.hira-btn system)
   ============================================================ */

.hira-btn {
  gap: 7px;
  padding: 9px 18px;
  font-size: 13.5px;
  border-radius: var(--radius-sm, 8px);
  border: 1.5px solid transparent;
  line-height: 1.2;
  font-family: var(--font-body, 'Poppins', system-ui, sans-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

.hira-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.hira-btn-primary {
  background: var(--hira-blue, #2563eb);
  color: #fff;
  border-color: var(--hira-blue, #2563eb);
  box-shadow:
    0 1px 2px rgba(37, 99, 235, 0.08),
    0 3px 10px rgba(37, 99, 235, 0.18);
}

.hira-btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  box-shadow:
    0 2px 4px rgba(37, 99, 235, 0.1),
    0 6px 16px rgba(37, 99, 235, 0.24);
  transform: translateY(-1px);
  color: #fff;
}

.hira-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(37, 99, 235, 0.1);
}

.hira-btn-ghost {
  background: #fff;
  border-color: var(--hira-bor, #e2e8f0);
  color: var(--hira-txt, #0f172a);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.hira-btn-ghost:hover {
  background: var(--hira-bg, #f8fafc);
  border-color: #cbd5e1;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.07);
  color: var(--hira-txt, #0f172a);
}

.hira-btn-sm {
  padding: 6px 12px !important;
  font-size: 12px !important;
  gap: 5px !important;
}

.hira-btn-danger {
  color: #b91c1c !important;
  border-color: rgba(239, 68, 68, 0.25) !important;
}

.hira-btn-danger:hover {
  background: rgba(239, 68, 68, 0.06) !important;
  border-color: rgba(239, 68, 68, 0.4) !important;
}

/* Back navigation button in dashboard views */
.hira-back-btn.hira-btn-ghost {
  color: var(--hira-mute, #64748b);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  padding: 6px 10px 6px 6px;
  font-size: 13px;
  gap: 5px;
}

.hira-back-btn.hira-btn-ghost:hover {
  background: rgba(15, 23, 42, 0.04);
  border-color: var(--hira-bor, #e2e8f0);
  color: var(--hira-txt, #0f172a);
}


/* ============================================================
   SECTION 7  —  INPUTS  (all form contexts)
   ============================================================ */

/* ── Dashboard inputs ── */
.hira-field input[type="text"],
.hira-field input[type="email"],
.hira-field input[type="number"],
.hira-field input[type="date"],
.hira-field input[type="url"],
.hira-field input[type="tel"],
.hira-field input[type="password"],
.hira-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--hira-bor, #e2e8f0);
  border-radius: var(--radius-sm, 8px);
  font-size: 13.5px;
  font-family: var(--font-body, 'Poppins', system-ui, sans-serif);
  color: var(--hira-txt, #0f172a);
  background: #fff;
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.14s ease, box-shadow 0.14s ease;
}

.hira-field input:not([readonly]):hover,
.hira-field textarea:hover {
  border-color: #cbd5e1;
}

.hira-field input:focus,
.hira-field textarea:focus {
  border-color: var(--hira-blue, #2563eb);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: #fff;
}

.hira-field input[readonly] {
  background: var(--hira-bg, #f8fafc);
  color: var(--hira-mute, #64748b);
  cursor: default;
}

/* ── Public / forms inputs ── */
.gcc-form-group input[type="text"],
.gcc-form-group input[type="email"],
.gcc-form-group input[type="number"],
.gcc-form-group input[type="date"],
.gcc-form-group input[type="url"],
.gcc-form-group input[type="tel"],
.gcc-form-group input[type="password"] {
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-sm, 8px);
  font-size: 14.5px;
  font-family: var(--font-body, 'Poppins', system-ui, sans-serif);
  background: #fff;
  color: var(--hi-text-main, #0f172a);
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.14s, box-shadow 0.14s;
  transform: none !important;
}

.gcc-form-group input:hover {
  border-color: rgba(15, 23, 42, 0.18);
}

.gcc-form-group input:focus {
  border-color: var(--hi-blue, #2563eb);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: #fff;
  transform: none !important;
}

/* ── Shared form inputs (.hi-form-input) ── */
.hi-form-input,
input.hi-form-input {
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-sm, 8px);
  font-size: 14px;
  font-family: var(--font-body, 'Poppins', system-ui, sans-serif);
  background: #fff;
  color: var(--hi-text-main, #0f172a);
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.14s, box-shadow 0.14s;
  transform: none !important;
}

.hi-form-input:focus {
  border-color: var(--hi-blue, #2563eb) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
  transform: none !important;
}

/* ── Search inputs in dashboard ── */
.hira-input-with-icon {
  position: relative;
  flex: 1;
  max-width: 380px;
}

.hira-input-with-icon svg {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: var(--hira-mute, #64748b);
  pointer-events: none;
}

.hira-input-with-icon input {
  width: 100%;
  height: 38px;
  padding: 0 14px 0 36px;
  border: 1.5px solid var(--hira-bor, #e2e8f0);
  border-radius: var(--radius-sm, 8px);
  font-size: 13px;
  font-family: var(--font-body, 'Poppins', system-ui, sans-serif);
  color: var(--hira-txt, #0f172a);
  background: #fff;
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.14s, box-shadow 0.14s;
}

.hira-input-with-icon input::placeholder {
  color: var(--hira-mute-2, #94a3b8);
}

.hira-input-with-icon input:hover {
  border-color: #cbd5e1;
}

.hira-input-with-icon input:focus {
  border-color: var(--hira-blue, #2563eb);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}


/* ============================================================
   SECTION 8  —  SELECTS / DROPDOWNS
   Custom chevron · Proper height · Moodboard focus state
   ============================================================ */

/* Universal custom arrow for all selects */
.hira-field select,
.hira-select,
.gcc-form-group select,
select.hi-form-input,
.hi-sort-select,
.hi-filter-item select,
.hi-auth-field select,
.hira-inline-input select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 13px 13px !important;
  cursor: pointer;
}

/* ── Dashboard form select ── */
.hira-field select {
  width: 100%;
  height: 42px;
  padding: 0 36px 0 14px;
  border: 1.5px solid var(--hira-bor, #e2e8f0) !important;
  border-radius: var(--radius-sm, 8px) !important;
  font-size: 13.5px;
  font-family: var(--font-body, 'Poppins', system-ui, sans-serif);
  color: var(--hira-txt, #0f172a);
  background-color: #fff !important;
  outline: none;
  transition: border-color 0.14s, box-shadow 0.14s;
}

.hira-field select:hover {
  border-color: #cbd5e1 !important;
}

.hira-field select:focus {
  border-color: var(--hira-blue, #2563eb) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
  outline: none;
}

/* ── ATS stage filter / generic .hira-select ── */
.hira-select {
  height: 38px;
  padding: 0 34px 0 12px !important;
  border: 1.5px solid var(--hira-bor, #e2e8f0) !important;
  border-radius: var(--radius-sm, 8px) !important;
  font-size: 13px;
  font-family: var(--font-body, 'Poppins', system-ui, sans-serif);
  color: var(--hira-txt, #0f172a);
  background-color: #fff !important;
  outline: none;
  transition: border-color 0.14s, box-shadow 0.14s;
}

.hira-select:hover {
  border-color: #cbd5e1 !important;
}

.hira-select:focus {
  border-color: var(--hira-blue, #2563eb) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
  outline: none;
}

/* ── Public form select ── */
.gcc-form-group select {
  width: 100%;
  height: 48px;
  padding: 0 36px 0 16px !important;
  border: 1.5px solid rgba(15, 23, 42, 0.1) !important;
  border-radius: var(--radius-sm, 8px) !important;
  font-size: 14.5px;
  font-family: var(--font-body, 'Poppins', system-ui, sans-serif);
  color: var(--hi-text-main, #0f172a);
  background-color: #fff !important;
  outline: none;
  transition: border-color 0.14s, box-shadow 0.14s;
}

.gcc-form-group select:hover {
  border-color: rgba(15, 23, 42, 0.18) !important;
}

.gcc-form-group select:focus {
  border-color: var(--hi-blue, #2563eb) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
  outline: none;
}

/* ── Shared .hi-form-input select ── */
select.hi-form-input {
  width: 100%;
  height: 48px;
  padding: 0 36px 0 16px !important;
  border: 1.5px solid rgba(15, 23, 42, 0.1) !important;
  border-radius: var(--radius-sm, 8px) !important;
  font-size: 14px;
  font-family: var(--font-body, 'Poppins', system-ui, sans-serif);
  color: var(--hi-text-main, #0f172a);
  background-color: #fff !important;
  outline: none;
  transition: border-color 0.14s, box-shadow 0.14s;
}

select.hi-form-input:focus {
  border-color: var(--hi-blue, #2563eb) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
  outline: none;
}

/* ── Sort / filter selects on opportunity directory ── */
.hi-sort-select,
.hi-filter-item select {
  height: 38px;
  padding: 0 32px 0 12px !important;
  border: 1.5px solid rgba(15, 23, 42, 0.1) !important;
  border-radius: var(--radius-sm, 8px) !important;
  font-size: 13.5px;
  font-family: var(--font-body, 'Poppins', system-ui, sans-serif);
  background-color: #fff !important;
  color: var(--hi-text-main, #0f172a);
  outline: none;
  transition: border-color 0.14s, box-shadow 0.14s;
}

.hi-sort-select:focus,
.hi-filter-item select:focus {
  border-color: var(--hi-blue, #2563eb) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
}


/* ============================================================
   SECTION 9  —  LABELS
   Unified uppercase micro-UI style across all form contexts.
   ============================================================ */

.hira-field > label:not(.hira-toggle-label) {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hira-mute, #64748b);
  font-family: var(--font-mono, 'Inter', system-ui, sans-serif);
  line-height: 1.4;
}

.gcc-form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hi-text-muted, #64748b);
  font-family: var(--font-mono, 'Inter', system-ui, sans-serif);
  margin-bottom: 7px;
  display: block;
}

.hi-form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hi-text-muted, #64748b);
  font-family: var(--font-mono, 'Inter', system-ui, sans-serif);
  line-height: 1.4;
}


/* ============================================================
   SECTION 10  —  TEXTAREAS
   ============================================================ */

.hira-field textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.6;
}

.gcc-form-group textarea {
  min-height: 140px;
  height: auto;
  padding: 14px 16px;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-sm, 8px);
  font-size: 14.5px;
  font-family: var(--font-body, 'Poppins', system-ui, sans-serif);
  background: #fff;
  color: var(--hi-text-main, #0f172a);
  outline: none;
  resize: vertical;
  line-height: 1.6;
  -webkit-appearance: none;
  transition: border-color 0.14s, box-shadow 0.14s;
  transform: none !important;
}

.gcc-form-group textarea:focus {
  border-color: var(--hi-blue, #2563eb);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  transform: none !important;
}

/* Placeholders */
.hira-field input::placeholder,
.hira-field textarea::placeholder,
.gcc-form-group input::placeholder,
.gcc-form-group textarea::placeholder,
.hi-form-input::placeholder {
  color: var(--hi-text-muted2, #94a3b8);
  font-weight: 400;
}


/* ============================================================
   SECTION 11  —  TABLE EMPTY STATE
   ============================================================ */

.hira-table-empty {
  padding: 48px 24px !important;
  text-align: center;
  color: var(--hira-mute, #64748b);
  font-size: 13.5px;
  line-height: 1.6;
  font-style: normal;
}

.hira-table-empty::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md, 12px);
  background: var(--hira-bg, #f8fafc);
  border: 1px solid var(--hira-bor, #e2e8f0);
  margin: 0 auto 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}


/* ============================================================
   SECTION 12  —  ATS STAGE PILLS  (opportunities pipeline)
   ============================================================ */

.hira-ats-stages {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.hira-stage-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full, 9999px);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: var(--font-mono, 'Inter', system-ui, sans-serif);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.14s, border-color 0.14s, color 0.14s;
  white-space: nowrap;
}

.hira-stage-pill:not(.hira-stage-pill--active) {
  background: #fff;
  border-color: var(--hira-bor, #e2e8f0);
  color: var(--hira-mute, #64748b);
}

.hira-stage-pill:not(.hira-stage-pill--active):hover {
  border-color: #cbd5e1;
  color: var(--hira-txt, #0f172a);
  background: var(--hira-bg, #f8fafc);
}

.hira-stage-pill--active {
  background: var(--hira-blue, #2563eb);
  border-color: var(--hira-blue, #2563eb);
  color: #fff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.hira-stage-pill .hira-stage-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.08);
  color: inherit;
}

.hira-stage-pill--active .hira-stage-count {
  background: rgba(255, 255, 255, 0.25);
}


/* ============================================================
   SECTION 13  —  VIEW HEADER ACTIONS ROW
   Consistent spacing for view-level action areas.
   ============================================================ */

.hira-view-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.hira-view-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}


/* ============================================================
   SECTION 14  —  TOPBAR TOOLS ROW  (ATS, filters, search)
   ============================================================ */

.hira-topbar-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  flex-wrap: wrap;
}


/* ============================================================
   SECTION 15  —  CARD IMPROVEMENTS
   Consistent card surface for non-hos cards.
   ============================================================ */

.hira-card {
  background: var(--hira-card, #fff);
  border: 1px solid var(--hira-bor, #e2e8f0);
  border-radius: var(--hira-r, 14px);
  padding: 20px 22px;
  box-shadow: var(--hira-shadow, 0 1px 3px rgba(15, 23, 42, 0.04));
}


/* ============================================================
   SECTION 16  —  OPP CARD  (opportunities grid)
   ============================================================ */

.hira-opp-card {
  background: #fff;
  border: 1px solid var(--hira-bor, #e2e8f0);
  border-radius: var(--hira-r, 14px);
  padding: 18px 20px;
  transition: box-shadow 0.14s ease, transform 0.14s ease, border-color 0.14s ease;
  box-shadow: var(--hira-shadow);
}

.hira-opp-card:hover {
  box-shadow: var(--hira-shadow-md, 0 4px 16px rgba(15, 23, 42, 0.08));
  border-color: rgba(37, 99, 235, 0.18);
  transform: translateY(-1px);
}

.hira-opp-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--hira-txt, #0f172a);
  margin: 0 0 4px;
  letter-spacing: -0.2px;
  line-height: 1.4;
}

.hira-opp-card-company {
  font-size: 12.5px;
  color: var(--hira-mute, #64748b);
  margin: 0 0 12px;
}

.hira-opp-card-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hira-opp-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: var(--radius-full, 9999px);
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-mono, 'Inter', system-ui, sans-serif);
  background: var(--hira-bg, #f8fafc);
  color: var(--hira-mute, #64748b);
  border: 1px solid var(--hira-bor-2, #eef2f6);
  letter-spacing: 0.01em;
}

.hira-opp-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--hira-bor-2, #eef2f6);
  margin-top: 14px;
}


/* ============================================================
   SECTION 17  —  FOCUS RING  (global accessibility)
   ============================================================ */

:focus-visible {
  outline: 2px solid var(--hi-blue, #2563eb);
  outline-offset: 2px;
}

.hira-btn:focus-visible,
.gcc-btn-hero:focus-visible,
.gcc-btn-secondary:focus-visible,
.gcc-btn-submit:focus-visible {
  outline: 2px solid var(--hi-blue, #2563eb);
  outline-offset: 3px;
}


/* ============================================================
   SECTION 18  —  RESPONSIVE
   ============================================================ */

@media (max-width: 640px) {
  .gcc-btn-hero,
  .gcc-btn-secondary,
  .gcc-btn-submit,
  .gcc-btn-apply,
  .mb-btn-navy,
  .mb-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hira-topbar-tools {
    flex-direction: column;
    align-items: stretch;
  }

  .hira-input-with-icon {
    max-width: none;
  }

  .hira-select {
    width: 100%;
  }
}

/* ============================================================
   SECTION 19  —  TEAM MANAGEMENT CRM  (.htm-*)
   Tabs · Bulk-action bar · Table · Status chips · Plan badges
   · Activate Plan modal · Upgrade Plan modal
   ============================================================ */

/* ── CRM card shell ─────────────────────────────────────── */
.htm-crm-card {
  padding: 0;
  overflow: hidden;
}

/* ── Tabs + Search header ───────────────────────────────── */
.htm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #e9eef5;
  gap: 12px;
  overflow-x: auto;
  min-height: 52px;
}

.htm-tabs {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.htm-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 14px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #64748b;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
  letter-spacing: 0.01em;
}

.htm-tab:hover {
  color: #1e293b;
}

.htm-tab--active {
  color: #2563eb;
  border-bottom-color: #2563eb;
  font-weight: 600;
}

/* Tab count badges */
.htm-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  background: #f1f5f9;
  color: #64748b;
}
.htm-tab--active .htm-count { background: #eff6ff; color: #2563eb; }
.htm-count--green  { background: #dcfce7; color: #15803d; }
.htm-count--blue   { background: #dbeafe; color: #1d4ed8; }
.htm-count--slate  { background: #f1f5f9; color: #475569; }
.htm-count--amber  { background: #fef3c7; color: #b45309; }

/* Search input inside header */
.htm-search {
  height: 34px;
  padding: 0 12px 0 34px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") 10px center / 14px no-repeat;
  min-width: 180px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.htm-search:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.10);
}

/* ── Bulk actions bar ───────────────────────────────────── */
.htm-actions-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #e9eef5;
  min-height: 48px;
}

.htm-sel-label {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.htm-bulk-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.htm-bulk-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}
.htm-bulk-btn--primary {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}
.htm-bulk-btn--primary:hover { background: #1d4ed8; }

.htm-bulk-btn--blue {
  background: #eff6ff;
  color: #2563eb;
  border-color: #bfdbfe;
}
.htm-bulk-btn--blue:hover { background: #dbeafe; }

.htm-bulk-btn--green {
  background: #f0fdf4;
  color: #15803d;
  border-color: #bbf7d0;
}
.htm-bulk-btn--green:hover { background: #dcfce7; }

.htm-bulk-btn--slate {
  background: #f8fafc;
  color: #475569;
  border-color: #cbd5e1;
}
.htm-bulk-btn--slate:hover { background: #f1f5f9; }

.htm-bulk-btn--danger {
  background: #fff5f5;
  color: #dc2626;
  border-color: #fecaca;
}
.htm-bulk-btn--danger:hover { background: #fee2e2; }

/* ── Table ──────────────────────────────────────────────── */
.htm-table {
  width: 100%;
}

.htm-th-check {
  width: 44px;
  text-align: center;
  padding-left: 20px !important;
}
.htm-th-center { text-align: center !important; }
.htm-th-right  { text-align: right !important; }

.htm-td-check  { width: 44px; text-align: center; padding-left: 20px !important; }
.htm-td-center { text-align: center; }
.htm-td-right  { text-align: right; font-size: 12.5px; color: #64748b; }
.htm-td-role   { color: #475569; font-size: 13px; }

/* Custom checkbox style */
.htm-checkbox {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #2563eb;
  border-radius: 4px;
}
.htm-checkbox:disabled { opacity: 0.35; cursor: not-allowed; }

/* Row states */
.htm-row { transition: background 0.1s; }
.htm-row:hover { background: #f8fafc; }
.htm-row--admin { opacity: 0.85; }
.htm-row-check:checked ~ * { background: #eff6ff; }

/* Selected row highlight — apply via JS or :has() if browser supports */
.htm-row:has(.htm-row-check:checked) { background: #eff6ff; }

/* Member name / email */
.htm-member-name {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  font-family: 'Inter', sans-serif;
}
.htm-member-name--pending { color: #94a3b8; font-style: italic; }
.htm-member-email {
  font-size: 12px;
  color: #64748b;
  margin-top: 1px;
}

.htm-admin-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #f1f5f9;
  color: #64748b;
  vertical-align: middle;
}

/* ── Status chips ────────────────────────────────────────── */
.htm-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.htm-status--active    { background: #dcfce7; color: #15803d; }
.htm-status--onboarded { background: #dbeafe; color: #1d4ed8; }
.htm-status--invited   { background: #f1f5f9; color: #475569; }
.htm-status--inactive  { background: #fee2e2; color: #dc2626; }
.htm-status--tba       { background: #fef3c7; color: #b45309; }
.htm-status--renewal   { background: #fff7ed; color: #c2410c; border: 1px solid #fdba74; }

/* ── Plan badges ─────────────────────────────────────────── */
.htm-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 9px;
  border-radius: 5px;
  font-size: 11.5px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.03em;
  border: 1.5px solid;
}
.htm-plan--free    { background: #f8fafc; color: #475569; border-color: #cbd5e1; }
.htm-plan--pro     { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.htm-plan--premium { background: #faf5ff; color: #7c3aed; border-color: #ddd6fe; }
.htm-plan-dash     { color: #94a3b8; font-size: 13px; font-family: 'Inter', sans-serif; }

/* ── Empty state ─────────────────────────────────────────── */
.htm-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 48px 24px;
  color: #94a3b8;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}
.htm-empty-state p { margin: 0; }

/* Loading / error cells */
.htm-loading-cell {
  text-align: center;
  padding: 28px 20px;
  color: #64748b;
  font-size: 13.5px;
}
.htm-error-cell {
  text-align: center;
  padding: 24px 20px;
  color: #ef4444;
  font-size: 13.5px;
}

/* ── Modal overlay ───────────────────────────────────────── */
.htm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 9999;
  display: none;        /* changed to flex by JS */
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: htmFadeIn 0.18s ease;
}
@keyframes htmFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Modal box ───────────────────────────────────────────── */
.htm-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 20px 60px rgba(15,23,42,0.20), 0 4px 16px rgba(15,23,42,0.10);
  overflow: hidden;
  animation: htmSlideUp 0.2s cubic-bezier(0.34,1.28,0.64,1);
}
@keyframes htmSlideUp {
  from { transform: translateY(20px) scale(0.97); opacity: 0.6; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.htm-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #f1f5f9;
}
.htm-modal-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  font-family: 'Inter', sans-serif;
  margin: 0;
}
.htm-modal-x {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: none;
  background: none;
  font-size: 20px;
  color: #94a3b8;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}
.htm-modal-x:hover { background: #f1f5f9; color: #475569; }

.htm-modal-body {
  padding: 20px 24px;
}
.htm-modal-desc {
  font-size: 13.5px;
  color: #475569;
  font-family: 'Inter', sans-serif;
  margin: 0 0 18px;
  line-height: 1.6;
}
.htm-modal-lbl {
  font-size: 11px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin: 0 0 10px;
}

.htm-modal-foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 24px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
}

/* ── Activate Plan cards ────────────────────────────────── */
.htm-plan-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}

.htm-plan-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 16px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  font-family: 'Inter', sans-serif;
}
.htm-plan-card:hover {
  border-color: #93c5fd;
  background: #f8fafc;
}
.htm-plan-card--active {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

.htm-plan-card-name {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
}
.htm-plan-card-name--premium { color: #7c3aed; }

.htm-plan-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.htm-plan-chip--pro     { background: #eff6ff; color: #1d4ed8; }
.htm-plan-chip--premium { background: #faf5ff; color: #7c3aed; }

/* ── Upgrade Plan select ────────────────────────────────── */
.htm-upgrade-select {
  width: 100%;
  margin-bottom: 12px;
}

/* ── Top plan notice ─────────────────────────────────────── */
.htm-top-plan-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  font-size: 13px;
  color: #92400e;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  margin-top: 10px;
}
.htm-top-plan-notice svg { flex-shrink: 0; margin-top: 2px; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 680px) {
  .htm-header        { flex-direction: column; align-items: stretch; padding: 12px 16px; gap: 8px; }
  .htm-tabs          { overflow-x: auto; }
  .htm-search        { min-width: 0; width: 100%; }
  .htm-plan-cards    { grid-template-columns: 1fr; }
  .htm-actions-bar   { flex-wrap: wrap; }
}

/* ════════════════════════════════════════════════════════════
   MANAGE ACTIVE TEAM — Button
════════════════════════════════════════════════════════════ */
.htm-mat-btn-row {
  display: flex;
  justify-content: flex-end;
  padding: 16px 0 4px;
}

.htm-mat-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.1px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15,23,42,.12);
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.htm-mat-open-btn:hover  { background: #1e293b; box-shadow: 0 4px 16px rgba(15,23,42,.16); transform: translateY(-1px); }
.htm-mat-open-btn:active { transform: translateY(0); }
.htm-mat-open-btn:focus-visible { outline: 3px solid rgba(37,99,235,.35); outline-offset: 2px; }

/* ════════════════════════════════════════════════════════════
   MANAGE ACTIVE TEAM — Modal
════════════════════════════════════════════════════════════ */
.htm-mat-overlay {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.htm-mat-panel {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.07);
  width: 100%;
  max-width: 980px;
  max-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15,23,42,.14);
  animation: htmSlideUp .25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Header */
.htm-mat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px 18px;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.htm-mat-head-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.htm-mat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(37,99,235,.08);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.htm-mat-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px;
  letter-spacing: -0.3px;
}

.htm-mat-subtitle {
  font-size: 12.5px;
  color: #94a3b8;
  margin: 0;
}

/* Body */
.htm-mat-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 26px;
}

.htm-mat-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,.08);
}

.htm-mat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.htm-mat-table thead tr {
  background: #f8fafc;
  border-bottom: 1px solid rgba(15,23,42,.1);
}

.htm-mat-table th {
  padding: 10px 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #94a3b8;
  white-space: nowrap;
}

.htm-mat-table tbody tr {
  border-bottom: 1px solid rgba(15,23,42,.06);
  transition: background .15s ease;
}
.htm-mat-table tbody tr:last-child { border-bottom: none; }
.htm-mat-table tbody tr:hover      { background: #f8fafc; }

.htm-mat-table td {
  padding: 13px 14px;
  color: #475569;
  vertical-align: middle;
}

.htm-mat-tc { text-align: center; }
.htm-mat-tr { text-align: right;  }

/* Listings count */
.htm-mat-listings {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

/* HIRA usage */
.htm-mat-hira {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.htm-mat-hira-lbl {
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
}
.htm-mat-bar-track {
  width: 68px;
  height: 5px;
  border-radius: 100px;
  background: #e2e8f0;
  overflow: hidden;
}
.htm-mat-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width .4s ease;
}
.htm-mat-bar--green { background: #059669; }
.htm-mat-bar--amber { background: #d97706; }
.htm-mat-bar--red   { background: #dc2626; }

/* Expiry status */
.htm-mat-expiring {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: #d97706;
  background: rgba(217,119,6,.08);
  border: 1px solid rgba(217,119,6,.2);
  padding: 4px 9px;
  border-radius: 100px;
  white-space: nowrap;
}
.htm-mat-ok {
  font-size: 11.5px;
  color: #94a3b8;
  white-space: nowrap;
}

/* Actions */
.htm-mat-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex-wrap: wrap;
}

.htm-mat-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 11px;
  border-radius: 7px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
  border: 1px solid;
}
.htm-mat-action--renew {
  background: rgba(217,119,6,.08);
  color: #d97706;
  border-color: rgba(217,119,6,.22);
}
.htm-mat-action--renew:hover  { background: rgba(217,119,6,.16); }
.htm-mat-action--addon {
  background: #f8fafc;
  color: #475569;
  border-color: #e2e8f0;
}
.htm-mat-action--addon:hover  { background: #f1f5f9; color: #0f172a; }
.htm-mat-action:focus-visible { outline: 3px solid rgba(37,99,235,.3); outline-offset: 2px; }

/* Empty state */
.htm-mat-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 48px 24px;
  color: #94a3b8;
  text-align: center;
  font-size: 13.5px;
}

/* Footer */
.htm-mat-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 26px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.htm-mat-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.55;
}
.htm-mat-note svg { flex-shrink: 0; margin-top: 1px; }

@media (max-width: 680px) {
  .htm-mat-overlay { padding: 16px; }
  .htm-mat-head    { padding: 18px 18px 14px; }
  .htm-mat-body    { padding: 16px 18px; }
  .htm-mat-foot    { flex-direction: column-reverse; align-items: flex-end; padding: 12px 18px; }
  .htm-mat-note    { display: none; }
}

/* ════════════════════════════════════════════════════════════
   ADMIN DISABLE DISCLAIMER POPUP
════════════════════════════════════════════════════════════ */
.htm-admin-disable-overlay {
  position: fixed;
  inset: 0;
  z-index: 9200;
  background: rgba(15,23,42,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

.htm-admin-disable-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  padding: 24px;
  animation: slideUp 0.25s ease;
}

.htm-admin-disable-modal h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #dc2626;
  margin: 0 0 12px;
}

.htm-admin-disable-modal p {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: #475569;
  margin: 0 0 10px;
  line-height: 1.6;
}

.htm-admin-disable-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

.htm-admin-disable-actions .htm-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s ease;
}

.htm-admin-disable-actions .htm-btn--primary {
  background: #dc2626;
  color: #fff;
  border-color: #dc2626;
}

.htm-admin-disable-actions .htm-btn--primary:hover {
  background: #b91c1c;
  border-color: #b91c1c;
}

.htm-admin-disable-actions .htm-btn--secondary {
  background: #f1f5f9;
  color: #475569;
  border-color: #e2e8f0;
}

.htm-admin-disable-actions .htm-btn--secondary:hover {
  background: #e2e8f0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
