:root {
  --bg: #050914;
  --bg-2: #08111f;
  --panel: rgba(13, 23, 39, 0.92);
  --panel-2: rgba(18, 31, 51, 0.88);
  --panel-3: rgba(8, 16, 29, 0.95);
  --border: rgba(148, 163, 184, 0.22);
  --border-strong: rgba(59, 130, 246, 0.54);
  --text: #f8fafc;
  --muted: #9aa8bc;
  --muted-2: #66758a;
  --blue: #2f80ed;
  --blue-2: #60a5fa;
  --green: #22c55e;
  --cyan: #22d3ee;
  --purple: #a855f7;
  --orange: #fb923c;
  --red: #ef4444;
  --gold: #fbbf24;
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 128, 237, 0.20), transparent 30%),
    radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.10), transparent 28%),
    linear-gradient(135deg, #030712 0%, #06111f 48%, #040816 100%);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

/* Login */
.login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.login-card {
  width: min(460px, 100%);
  padding: 42px 36px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(17, 28, 47, 0.96), rgba(5, 10, 20, 0.98));
  box-shadow: 0 28px 100px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.04);
}
.login-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #93c5fd;
  font-size: 42px;
  background: rgba(47, 128, 237, .14);
  border: 1px solid rgba(47, 128, 237, .36);
  box-shadow: 0 0 30px rgba(47, 128, 237, .18);
}
.login-card h1 { margin: 0; text-align: center; font-size: 28px; }
.login-subtitle { margin: 8px 0 0; text-align: center; color: var(--muted); }
.login-glow {
  height: 1px;
  width: 230px;
  margin: 24px auto 28px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
}
label { display: block; margin: 16px 0 8px; font-size: 13px; color: #dbeafe; }
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(3, 7, 18, 0.80);
  color: var(--text);
  outline: none;
}
textarea { min-height: 92px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: rgba(47,128,237,.80);
  box-shadow: 0 0 0 3px rgba(47,128,237,.15);
}
.primary-btn {
  border: 0;
  border-radius: 12px;
  color: white;
  font-weight: 800;
  cursor: pointer;
  padding: 13px 18px;
  background: linear-gradient(90deg, #2563eb, #2f80ed 55%, #0ea5e9);
  box-shadow: 0 14px 34px rgba(37, 99, 235, .26);
}
.login-card .primary-btn { width: 100%; margin-top: 22px; }
.login-help { margin: 22px 0 0; text-align: center; color: #bfdbfe; font-size: 13px; }
.alert { padding: 12px 14px; border-radius: 12px; margin: 16px 0; border: 1px solid var(--border); }
.alert.error { color: #fecaca; background: rgba(127, 29, 29, .35); border-color: rgba(239, 68, 68, .35); }

/* Shell */
.suite-shell { min-height: 100vh; display: flex; flex-direction: column; }
.suite-topbar {
  height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(3, 7, 18, 0.82);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand-lockup { display: inline-flex; align-items: center; gap: 14px; min-width: 270px; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #60a5fa;
  font-size: 33px;
  background: rgba(37, 99, 235, .15);
  border: 1px solid rgba(59,130,246,.32);
}
.brand-title { font-weight: 850; font-size: 25px; letter-spacing: -0.02em; }
.top-nav { display: flex; align-items: center; justify-content: center; gap: 8px; }
.top-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 15px;
  border-radius: 12px;
  color: #d3dceb;
  border: 1px solid transparent;
}
.top-nav a.active,
.top-nav a:hover {
  color: #eff6ff;
  background: rgba(47, 128, 237, .13);
  border-color: rgba(47, 128, 237, .34);
}
.user-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 17px;
  padding: 10px 12px;
  background: rgba(15, 23, 42, .62);
}
.user-avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #60a5fa; background: rgba(47,128,237,.16); }
.user-menu strong { display: block; font-size: 14px; }
.user-menu small { color: var(--muted); font-size: 12px; }
.logout-link { color: #fecaca; border-left: 1px solid var(--border); padding-left: 12px; font-size: 13px; }

/* Workspace */
.workspace-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 0;
  min-height: calc(100vh - 64px);
}
.apps-sidebar {
  padding: 16px 14px;
  border-right: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(8, 14, 26, .90), rgba(4, 8, 16, .94));
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-head h2 { margin: 0 0 8px; font-size: 21px; }
.sidebar-head p { margin: 0; color: var(--muted); line-height: 1.45; }
.app-list { display: grid; gap: 10px; }
.app-row {
  width: 100%;
  min-height: 54px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 8px 10px;
  border-radius: 14px;
  color: var(--text);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(15, 23, 42, .78), rgba(8, 13, 24, .86));
  cursor: pointer;
}
.app-row:hover,
.app-row.active {
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(37, 99, 235, .18), rgba(8, 13, 24, .92));
  box-shadow: 0 0 0 1px rgba(37, 99, 235, .08), 0 12px 35px rgba(0,0,0,.20);
}
.app-icon, .inline-icon, .tile-icon {
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-weight: 900;
  border: 1px solid currentColor;
  background: rgba(255,255,255,.035);
}
.app-icon { width: 34px; height: 34px; font-size: 18px; }
.app-meta strong { display: block; font-size: 15px; }
.app-meta small { color: var(--muted); font-size: 12px; }
.row-menu { color: #cbd5e1; font-size: 22px; }
.new-app-btn {
  display: block;
  text-align: center;
  border: 1px solid rgba(59,130,246,.7);
  color: #93c5fd;
  border-radius: 13px;
  padding: 10px 12px;
  background: rgba(37,99,235,.08);
}
.sidebar-note {
  margin-top: auto;
  padding: 24px;
  border-radius: 16px;
  background: rgba(37, 99, 235, .10);
  border: 1px solid rgba(59, 130, 246, .28);
}
.sidebar-note strong { display: block; color: #60a5fa; margin-bottom: 8px; }
.sidebar-note span { color: #cbd5e1; line-height: 1.5; font-size: 14px; }
.workspace-main { min-width: 0; padding: 14px 18px 18px; display: flex; flex-direction: column; gap: 12px; }
.app-statusbar {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(8, 15, 27, .76);
}
.app-statusbar div { display: flex; align-items: center; gap: 12px; min-width: 0; }
.app-statusbar a { color: #60a5fa; text-decoration: underline; text-underline-offset: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.status-icon { color: #93c5fd; }
.status-ok { display: inline-flex; align-items: center; gap: 8px; color: #cbd5e1; font-size: 14px; white-space: nowrap; }
.status-ok i { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px rgba(34,197,94,.8); }
.workspace-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.workspace-header h1 { margin: 0 0 6px; font-size: 25px; letter-spacing: -0.02em; }
.workspace-header p { margin: 0; color: var(--muted); }
.admin-shortcut, .ghost-btn {
  border: 1px solid rgba(59,130,246,.55);
  color: #bfdbfe;
  background: rgba(37,99,235,.08);
  border-radius: 12px;
  padding: 12px 14px;
}
.embedded-browser {
  flex: 1;
  min-height: 610px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15,23,42,.74), rgba(3,7,18,.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 18px 80px rgba(0,0,0,.20);
}
.browser-toolbar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(17, 24, 39, .72);
}
.dot { width: 13px; height: 13px; border-radius: 50%; display: inline-block; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }
.browser-toolbar button,
.browser-toolbar a {
  border: 0;
  color: #dbeafe;
  background: transparent;
  cursor: pointer;
  font-size: 19px;
}
.address-bar {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #9aa8bc;
  background: rgba(3,7,18,.58);
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 10px;
  padding: 10px 13px;
  font-size: 13px;
}
.iframe-wrap { position: relative; height: calc(100% - 44px); min-height: 566px; }
iframe { width: 100%; height: 100%; border: 0; background: #fff; }
.hidden { display: none !important; }
.empty-frame {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(37,99,235,.16), transparent 28%),
    radial-gradient(circle at 30% 20%, rgba(96,165,250,.12), transparent 20%),
    #07101f;
  color: #e2e8f0;
}
.empty-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 18px;
  color: #60a5fa;
  font-size: 50px;
  border: 1px solid rgba(96,165,250,.55);
  box-shadow: 0 0 38px rgba(37,99,235,.20);
}
.empty-frame h2 { margin: 0 0 8px; }
.empty-frame p { margin: 0; color: var(--muted); }

/* Admin */
.admin-page { padding: 26px; }
.admin-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.admin-header h1 { margin: 0 0 8px; font-size: 28px; }
.admin-header p { margin: 0; color: var(--muted); }
.admin-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr); gap: 18px; align-items: start; }
.admin-form-panel, .admin-help-panel, .table-panel {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(13, 23, 39, .86);
  padding: 22px;
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
}
.admin-form-panel h2, .admin-help-panel h2, .table-panel h2 { margin: 0 0 16px; }
.admin-help-panel p { color: var(--muted); line-height: 1.55; }
.admin-help-panel a { color: #60a5fa; text-decoration: underline; word-break: break-all; }
.app-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.app-form .wide { grid-column: 1 / -1; }
.check-line { display: flex; align-items: center; gap: 9px; margin: 0; }
.check-line input { width: auto; }
.form-actions { grid-column: 1 / -1; display: flex; gap: 12px; align-items: center; }
.icon-picker { display: grid; grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); gap: 12px; }
.icon-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "radio icon" "label label";
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(3, 7, 18, .42);
  cursor: pointer;
}
.icon-tile input { grid-area: radio; width: auto; }
.icon-tile .tile-icon { grid-area: icon; width: 40px; height: 40px; justify-self: end; font-size: 20px; }
.icon-tile strong { grid-area: label; color: #e2e8f0; font-size: 13px; }
.icon-tile:has(input:checked) { border-color: var(--border-strong); background: rgba(37,99,235,.14); }
.table-panel { margin-top: 20px; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; color: #e2e8f0; }
th, td { border-bottom: 1px solid var(--border); padding: 12px 10px; text-align: left; vertical-align: middle; }
th { color: #93c5fd; font-weight: 800; }
.status { border-radius: 999px; padding: 4px 9px; font-size: 12px; }
.status.active { background: rgba(34,197,94,.16); color: #86efac; }
.status.inactive { background: rgba(148,163,184,.13); color: #cbd5e1; }
.actions { display: flex; gap: 8px; flex-wrap: wrap; }
.actions form { margin: 0; }
.small-btn { border: 1px solid rgba(47,128,237,.45); background: rgba(47,128,237,.09); color: #bfdbfe; padding: 7px 9px; border-radius: 9px; cursor: pointer; }
.small-btn.danger { border-color: rgba(239,68,68,.45); color: #fecaca; }
.inline-icon { display: inline-grid; width: 30px; height: 30px; margin-right: 7px; }

/* Icon colors */
.theme-manager { color: #60a5fa; }
.theme-terminal { color: #cbd5e1; }
.theme-dashboard { color: #3b82f6; }
.theme-data { color: #22c55e; }
.theme-browser { color: #93c5fd; }
.theme-rocket { color: #60a5fa; }
.theme-settings { color: #94a3b8; }
.theme-folder { color: #fbbf24; }
.theme-report { color: #a855f7; }
.theme-chip { color: #fb923c; }
.theme-ia { color: #a3e635; }

@media (max-width: 1180px) {
  .suite-topbar { grid-template-columns: 1fr; height: auto; padding: 16px; }
  .brand-lockup { min-width: 0; }
  .top-nav { justify-content: flex-start; flex-wrap: wrap; }
  .user-menu { justify-self: start; }
  .workspace-layout { grid-template-columns: 1fr; }
  .apps-sidebar { border-right: 0; border-bottom: 1px solid var(--border); }
  .app-list { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}
@media (max-width: 760px) {
  .app-list, .admin-grid, .app-form { grid-template-columns: 1fr; }
  .workspace-main, .admin-page { padding: 16px; }
  .app-statusbar, .workspace-header, .admin-header { flex-direction: column; align-items: flex-start; }
  .embedded-browser { min-height: 440px; }
  .iframe-wrap { min-height: 385px; }
}


/* v1.2.1 - layout compacto com logo institucional */
.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}
.brand-mark { display: none; }
.brand-lockup { min-width: 245px; gap: 10px; }
.brand-title { font-size: 22px; }
.suite-topbar.compact { box-shadow: 0 10px 35px rgba(0,0,0,.20); }
.top-nav { justify-content: flex-end; }
.top-nav a { padding: 9px 12px; font-size: 14px; }
.compact-user { padding: 7px 9px; border-radius: 14px; }
.compact-user .user-avatar { width: 28px; height: 28px; }
.compact-user strong { font-size: 13px; }
.compact-user small { font-size: 11px; }
.logout-link { padding-left: 9px; }
.sidebar-head h2 { font-size: 18px; }
.sidebar-head p { font-size: 13px; }
.app-meta strong { font-size: 14px; }
.app-meta small { display: none; }
.app-list { gap: 8px; }
.sidebar-note { padding: 13px; }
.sidebar-note span { font-size: 13px; }
.workspace-header.compact-header { align-items: center; padding-bottom: 2px; }
.workspace-header.compact-header h1 { font-size: 21px; margin-bottom: 2px; }
.workspace-header.compact-header p { font-size: 13px; }
.admin-shortcut, .ghost-btn { padding: 9px 12px; }
.login-mark.logo-mark { width: 82px; height: 82px; padding: 10px; background: rgba(255,255,255,.94); border-color: rgba(96,165,250,.45); }
.login-mark.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
@media (max-width: 1180px) {
  .suite-topbar { height: auto; }
  .brand-logo { width: 38px; height: 38px; }
}

/* v1.2.3 - workspace maximizado, home institucional e sidebar ultracompacta */
.suite-topbar.compact {
  height: 52px;
  padding: 0 12px;
  gap: 12px;
}
.suite-topbar.compact .brand-logo {
  width: 34px;
  height: 34px;
}
.suite-topbar.compact .brand-lockup {
  min-width: 218px;
  gap: 9px;
}
.suite-topbar.compact .brand-title {
  font-size: 18px;
  line-height: 1;
}
.suite-topbar.compact .top-nav {
  justify-content: flex-start;
  gap: 6px;
}
.suite-topbar.compact .top-nav a {
  padding: 7px 10px;
  font-size: 13px;
  border-radius: 10px;
}
.suite-topbar.compact .compact-user {
  padding: 5px 8px;
  gap: 8px;
}
.suite-topbar.compact .compact-user .user-avatar {
  width: 24px;
  height: 24px;
}
.suite-topbar.compact .compact-user strong,
.suite-topbar.compact .logout-link {
  font-size: 12px;
}
.suite-topbar.compact .compact-user small {
  display: none;
}

.workspace-layout-v123 {
  grid-template-columns: 94px minmax(0, 1fr);
  min-height: calc(100vh - 52px);
}
.apps-sidebar-v123 {
  padding: 10px 7px;
  gap: 8px;
}
.sidebar-head-v123 h2 {
  margin: 0;
  font-size: 13px;
  text-align: center;
  color: #bfdbfe;
  letter-spacing: .01em;
}
.app-list-v123 {
  gap: 7px;
}
.app-row-v123 {
  min-height: 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 7px 4px;
  border-radius: 13px;
  text-align: center;
}
.app-row-v123 .row-menu,
.app-row-v123 .app-meta small {
  display: none;
}
.app-icon-v123 {
  width: 28px;
  height: 28px;
  font-size: 15px;
  border-radius: 9px;
}
.app-meta-v123 strong {
  display: block;
  max-width: 76px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.14;
  overflow: hidden;
  text-overflow: ellipsis;
}
.workspace-main-v123 {
  padding: 8px;
  gap: 0;
}
.embedded-browser-v123 {
  min-height: calc(100vh - 68px);
  height: calc(100vh - 68px);
  border-radius: 16px;
}
.iframe-wrap-v123 {
  height: 100%;
  min-height: 100%;
}
.home-frame {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 35%, rgba(37,99,235,.22), transparent 22%),
    radial-gradient(circle at 25% 75%, rgba(14,165,233,.13), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(96,165,250,.10), transparent 20%),
    linear-gradient(135deg, #050914 0%, #07111f 55%, #030712 100%);
  color: var(--text);
}
.home-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(96,165,250,.20) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .18;
}
.home-logo {
  position: relative;
  display: block;
  margin: 0 auto;
  width: min(520px, 46vw);
  max-width: 78%;
  height: auto;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(96,165,250,.45);
  box-shadow: 0 26px 90px rgba(37,99,235,.25), 0 0 0 1px rgba(255,255,255,.06);
}
.home-frame h1 {
  position: relative;
  margin: 26px 0 8px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.home-frame p {
  position: relative;
  margin: 0;
  max-width: 860px;
  font-size: clamp(18px, 2vw, 30px);
  color: #bfdbfe;
  font-weight: 650;
}

@media (max-width: 1180px) {
  .workspace-layout-v123 {
    grid-template-columns: 1fr;
  }
  .apps-sidebar-v123 {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .app-list-v123 {
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  }
  .app-row-v123 {
    min-height: 64px;
  }
  .embedded-browser-v123 {
    height: calc(100vh - 170px);
    min-height: 460px;
  }
}


/* v1.2.4 - home central proporcional, sidebar ainda mais compacta e admin otimizado */
.workspace-layout-v123 {
  grid-template-columns: 82px minmax(0, 1fr);
}
.apps-sidebar-v123 {
  padding: 8px 5px;
}
.sidebar-head-v123 h2 {
  font-size: 12px;
  margin-bottom: 2px;
}
.app-list-v123 {
  gap: 5px;
}
.app-row-v123 {
  min-height: 58px;
  gap: 4px;
  padding: 6px 3px;
  border-radius: 11px;
}
.app-icon-v123 {
  width: 23px;
  height: 23px;
  font-size: 12px;
  border-radius: 8px;
}
.app-meta-v123 strong {
  max-width: 68px;
  font-size: 9px;
  line-height: 1.08;
}
.workspace-main-v123 {
  padding: 6px;
}
.embedded-browser-v123 {
  min-height: calc(100vh - 64px);
  height: calc(100vh - 64px);
  border-radius: 14px;
}
.home-frame {
  align-content: center;
  place-content: center;
  gap: 0;
}
.home-logo {
  position: relative;
  display: block;
  margin: 0 auto;
  width: min(520px, 46vw);
  max-width: 78%;
  height: auto;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(96,165,250,.45);
  box-shadow: 0 26px 90px rgba(37,99,235,.25), 0 0 0 1px rgba(255,255,255,.06);
}
.home-frame h1 {
  margin: 18px 0 7px;
  font-size: clamp(30px, 3vw, 44px);
  text-align: center;
}
.home-frame p {
  font-size: clamp(18px, 1.65vw, 25px);
  text-align: center;
  max-width: 760px;
}
.admin-grid {
  grid-template-columns: minmax(0, 1fr);
}
.admin-form-panel {
  padding: 20px;
}
.app-form {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 13px;
}
.app-form .wide {
  grid-column: 1 / -1;
}
.icon-picker {
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 10px;
}
.icon-tile {
  padding: 10px;
  gap: 7px;
}
.icon-tile .tile-icon {
  width: 32px;
  height: 32px;
  font-size: 17px;
}
.icon-tile strong {
  font-size: 12px;
}
@media (max-width: 760px) {
  .app-form { grid-template-columns: 1fr; }
  .home-logo { width: 72px; max-width: 72px; }
}


/* v1.2.5 - ajustes finos aprovados: home menor e cadastro em painel lateral */
.home-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}
.home-logo {
  position: relative;
  display: block;
  margin: 0 auto;
  width: min(520px, 46vw);
  max-width: 78%;
  height: auto;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(96,165,250,.45);
  box-shadow: 0 26px 90px rgba(37,99,235,.25), 0 0 0 1px rgba(255,255,255,.06);
}
.home-frame h1 {
  margin: 12px 0 4px;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.05;
  text-align: center;
  width: 100%;
}
.home-frame p {
  margin: 0;
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.3;
  text-align: center;
  width: 100%;
  color: #bfdbfe;
}

.admin-page-v125 {
  height: calc(100vh - 52px);
  padding: 14px;
  overflow: hidden;
}
.admin-header-v125 {
  margin-bottom: 12px;
  align-items: center;
}
.admin-header-v125 h1 {
  font-size: 22px;
  margin-bottom: 3px;
}
.admin-header-v125 p {
  font-size: 13px;
}
.apps-admin-layout-v125 {
  height: calc(100vh - 132px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 14px;
  align-items: stretch;
}
.apps-list-panel-v125,
.new-app-panel-v125 {
  min-height: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(13, 23, 39, .86);
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
}
.apps-list-panel-v125 {
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.new-app-panel-v125 {
  padding: 18px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(17, 27, 45, .96), rgba(8, 14, 26, .96));
}
.panel-title-row-v125 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.panel-title-row-v125.compact {
  align-items: center;
}
.panel-title-row-v125 h2 {
  margin: 0;
  font-size: 20px;
}
.panel-title-row-v125 p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.panel-close-v125 {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: #dbeafe;
  font-size: 22px;
  background: rgba(3,7,18,.35);
}
.apps-admin-list-v125 {
  display: grid;
  gap: 10px;
  overflow: auto;
  padding-right: 4px;
}
.admin-app-card-v125 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(3, 7, 18, .36);
}
.admin-app-card-v125.editing {
  border-color: var(--border-strong);
  background: rgba(37,99,235,.12);
}
.admin-app-main-v125 {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
}
.admin-card-icon-v125 {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  font-weight: 900;
}
.admin-app-main-v125 strong {
  display: block;
  font-size: 14px;
}
.admin-app-main-v125 small {
  display: block;
  max-width: 100%;
  margin-top: 3px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}
.admin-card-meta-v125 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
}
.admin-card-meta-v125 span:not(.status) {
  color: #cbd5e1;
  background: rgba(148,163,184,.10);
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 999px;
  padding: 3px 7px;
  font-size: 11px;
}
.admin-card-actions-v125 {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.admin-card-actions-v125 form {
  margin: 0;
}
.app-form-v125 {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.app-form-v125 label {
  margin: 0 0 6px;
}
.app-form-v125 input,
.app-form-v125 textarea {
  padding: 11px 12px;
  border-radius: 11px;
}
.app-form-v125 textarea {
  min-height: 72px;
}
.form-two-cols-v125 {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 86px;
  gap: 10px;
}
.icon-picker-v125 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(3,7,18,.28);
}
.icon-tile-v125 {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 7px;
  border-radius: 11px;
}
.icon-tile-v125 input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.icon-tile-v125 .tile-icon {
  width: 31px;
  height: 31px;
  font-size: 16px;
  justify-self: center;
}
.icon-tile-v125 strong {
  display: none;
}
.icon-tile-v125:has(input:checked)::after {
  content: "✓";
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  background: #2f80ed;
  box-shadow: 0 0 18px rgba(47,128,237,.55);
}
.check-line-v125 {
  margin-top: 2px;
  color: #dbeafe;
}
.form-actions-v125 {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-actions-v125 .ghost-btn,
.form-actions-v125 .primary-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

@media (max-width: 1080px) {
  .admin-page-v125 {
    height: auto;
    overflow: visible;
  }
  .apps-admin-layout-v125 {
    height: auto;
    grid-template-columns: 1fr;
  }
  .apps-admin-list-v125 {
    max-height: none;
  }
}
@media (max-width: 760px) {
  .home-logo {
  position: relative;
  display: block;
  margin: 0 auto;
  width: min(520px, 46vw);
  max-width: 78%;
  height: auto;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(96,165,250,.45);
  box-shadow: 0 26px 90px rgba(37,99,235,.25), 0 0 0 1px rgba(255,255,255,.06);
}


/* v1.3.0 - Perfis por aplicação vindos do Auth-Manager */
.role-picker-v130{
  display:flex;
  flex-wrap:wrap;
  gap:.45rem;
  padding:.55rem;
  border:1px solid rgba(148,163,184,.18);
  border-radius:12px;
  background:rgba(3,10,22,.42);
}
.role-chip-v130{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding:.42rem .58rem;
  border:1px solid rgba(148,163,184,.20);
  border-radius:999px;
  color:#cbd5e1;
  background:rgba(15,23,42,.68);
  font-size:.82rem;
  cursor:pointer;
}
.role-chip-v130:has(input:checked){
  color:#eff6ff;
  border-color:rgba(47,125,246,.65);
  background:rgba(47,125,246,.18);
}
.role-chip-v130 input{width:auto;margin:0;accent-color:#2f7df6}
.field-hint-v130{display:block;margin-top:.45rem;color:#7f8da3;font-size:.76rem;line-height:1.35}


@media (max-width: 960px) {
  .home-logo {
    width: min(420px, 72vw);
    max-width: 86%;
    padding: 22px;
  }
}





/* v1.3.11 - Layout funcional de Gerenciar aplicativos */
.admin-apps-page-v1311 {
  height: calc(100dvh - 52px);
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  overflow: hidden;
}
.admin-apps-top-v1311 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}
.admin-apps-top-v1311 h1 {
  margin: 0 0 4px;
  font-size: clamp(20px, 2vw, 26px);
}
.admin-apps-top-v1311 p {
  margin: 0;
  color: #9fb3cf;
  font-size: 14px;
}
.admin-apps-grid-v1311 {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
  gap: 16px;
  align-items: stretch;
}
.apps-card-v1311,
.form-card-v1311 {
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15,27,46,.92), rgba(8,16,29,.96));
  box-shadow: 0 22px 70px rgba(0,0,0,.25);
}
.apps-card-v1311 {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  padding: 0;
}
.form-card-v1311 {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}
.card-head-v1311 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 12px;
  border-bottom: 1px solid rgba(148,163,184,.14);
}
.card-head-v1311 h2 {
  margin: 0 0 4px;
  font-size: clamp(18px, 1.6vw, 23px);
}
.card-head-v1311 p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.form-head-v1311 {
  align-items: center;
}
.apps-list-scroll-v1311 {
  min-height: 0;
  overflow: auto;
  padding: 14px 18px 18px;
  scrollbar-width: thin;
}
.app-card-v1311 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 17px;
  background: rgba(3,10,22,.36);
}
.app-card-v1311.editing {
  border-color: rgba(47,128,237,.72);
  box-shadow: 0 0 0 3px rgba(47,128,237,.12);
}
.app-card-main-v1311 {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.app-card-text-v1311 {
  min-width: 0;
}
.app-card-text-v1311 strong {
  display: block;
  font-size: 15px;
}
.app-card-text-v1311 small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  color: #93c5fd;
  margin-top: 3px;
}
.app-card-actions-v1311 {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.app-card-actions-v1311 form {
  margin: 0;
}
.app-form-v1311 {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
}
.form-body-v1311 {
  min-height: 0;
  overflow: auto;
  padding: 16px 20px 20px;
  scrollbar-width: thin;
}
.form-body-v1311 > div {
  margin-bottom: 12px;
}
.form-body-v1311 label {
  margin: 0 0 7px;
  font-size: 13px;
}
.form-body-v1311 input,
.form-body-v1311 textarea {
  min-height: 43px;
}
.form-body-v1311 textarea {
  min-height: 82px;
  max-height: 140px;
  resize: vertical;
}
.form-row-v1311 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 12px;
}
.role-picker-v1311 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
  gap: 8px;
  max-height: 150px;
  overflow: auto;
  padding: 10px;
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 14px;
  background: rgba(3,10,22,.42);
}
.role-chip-v1311 {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.18);
  background: rgba(15,23,42,.66);
  color: #dbeafe;
  cursor: pointer;
  font-size: 13px;
}
.role-chip-v1311 input {
  width: auto;
  margin: 0;
  accent-color: #2f80ed;
}
.role-chip-v1311:has(input:checked) {
  border-color: rgba(47,128,237,.75);
  background: rgba(47,128,237,.18);
}
.icon-picker-v1311 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
  gap: 10px;
  max-height: 190px;
  overflow: auto;
  padding: 10px;
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 16px;
  background: rgba(3,10,22,.32);
}
.icon-tile-v1311 {
  position: relative;
  min-height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 14px;
  background: rgba(15,23,42,.64);
  cursor: pointer;
}
.icon-tile-v1311 input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.icon-tile-v1311 .tile-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.icon-tile-v1311 strong {
  display: none;
}
.icon-tile-v1311:has(input:checked) {
  border-color: rgba(47,128,237,.85);
  box-shadow: 0 0 0 3px rgba(47,128,237,.15);
}
.icon-tile-v1311:has(input:checked)::after {
  content: "✓";
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2f80ed;
  color: #fff;
  font-weight: 900;
}
.active-check-v1311 {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: #dbeafe;
}
.active-check-v1311 input {
  width: auto;
  min-height: 0;
  margin: 0;
}
.form-actions-v1311 {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 12px;
  padding: 14px 20px;
  border-top: 1px solid rgba(148,163,184,.18);
  background: linear-gradient(180deg, rgba(8,14,26,.86), rgba(5,10,20,1));
  box-shadow: 0 -18px 36px rgba(0,0,0,.28);
}
.form-actions-v1311 .ghost-btn,
.form-actions-v1311 .primary-btn,
.form-actions-v1311 button {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.form-body-v1311::-webkit-scrollbar,
.apps-list-scroll-v1311::-webkit-scrollbar,
.icon-picker-v1311::-webkit-scrollbar,
.role-picker-v1311::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}
.form-body-v1311::-webkit-scrollbar-thumb,
.apps-list-scroll-v1311::-webkit-scrollbar-thumb,
.icon-picker-v1311::-webkit-scrollbar-thumb,
.role-picker-v1311::-webkit-scrollbar-thumb {
  background: rgba(148,163,184,.38);
  border-radius: 999px;
}
.form-body-v1311::-webkit-scrollbar-track,
.apps-list-scroll-v1311::-webkit-scrollbar-track,
.icon-picker-v1311::-webkit-scrollbar-track,
.role-picker-v1311::-webkit-scrollbar-track {
  background: rgba(15,23,42,.28);
}

@media (max-width: 1100px) {
  .admin-apps-page-v1311 {
    height: auto;
    min-height: calc(100dvh - 52px);
    overflow: visible;
  }
  .admin-apps-grid-v1311 {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .apps-card-v1311,
  .form-card-v1311 {
    min-height: 420px;
  }
  .apps-list-scroll-v1311 {
    max-height: 420px;
  }
  .form-card-v1311 {
    display: block;
    overflow: visible;
  }
  .app-form-v1311 {
    display: block;
    overflow: visible;
  }
  .form-body-v1311 {
    overflow: visible;
  }
  .form-actions-v1311 {
    position: sticky;
    bottom: 0;
    z-index: 40;
  }
}

@media (max-width: 640px) {
  .admin-apps-page-v1311 {
    padding: 10px;
    gap: 10px;
  }
  .admin-apps-top-v1311 {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-apps-top-v1311 .back-v1311 {
    width: 100%;
    text-align: center;
  }
  .card-head-v1311 {
    padding: 14px;
  }
  .apps-list-scroll-v1311,
  .form-body-v1311 {
    padding: 12px;
  }
  .app-card-v1311 {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 12px;
  }
  .app-card-actions-v1311 {
    justify-content: flex-start;
  }
  .form-row-v1311 {
    grid-template-columns: 1fr;
  }
  .form-actions-v1311 {
    grid-template-columns: 1fr;
    padding: 12px;
  }
  .role-picker-v1311 {
    grid-template-columns: 1fr;
  }
}


/* v1.3.12 - Gerenciar aplicativos simples, funcional e responsivo */
.apps-admin-page-v1312 {
  width: min(1760px, 100%);
  margin: 0 auto;
  padding: 18px;
  min-height: calc(100dvh - 52px);
  overflow: visible;
}
.apps-admin-header-v1312 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.apps-admin-header-v1312 h1 {
  margin: 0 0 4px;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.03em;
}
.apps-admin-header-v1312 p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.apps-admin-back-v1312 {
  flex: 0 0 auto;
}
.apps-admin-layout-v1312 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 18px;
  align-items: start;
}
.apps-panel-v1312,
.form-panel-v1312 {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 27, 46, .94), rgba(8, 16, 29, .96));
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
  overflow: hidden;
}
.apps-panel-head-v1312 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(148,163,184,.14);
}
.apps-panel-head-v1312 h2 {
  margin: 0 0 4px;
  font-size: clamp(18px, 1.55vw, 24px);
  letter-spacing: -0.02em;
}
.apps-panel-head-v1312 p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.apps-list-v1312 {
  max-height: calc(100dvh - 190px);
  overflow: auto;
  padding: 16px;
}
.app-item-v1312 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(148,163,184,.17);
  border-radius: 18px;
  background: rgba(3,10,22,.34);
}
.app-item-v1312.editing {
  border-color: rgba(47,128,237,.72);
  box-shadow: 0 0 0 3px rgba(47,128,237,.12);
}
.app-info-v1312 {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.app-icon-admin-v1312 {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148,163,184,.22);
  background: rgba(15,23,42,.78);
  font-size: 20px;
}
.app-text-v1312 {
  min-width: 0;
}
.app-text-v1312 strong {
  display: block;
  font-size: 15px;
}
.app-text-v1312 small {
  display: block;
  margin-top: 3px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #93c5fd;
}
.app-tags-v1312 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.app-tags-v1312 span:not(.status) {
  color: #cbd5e1;
  background: rgba(148,163,184,.10);
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
}
.app-actions-v1312 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.app-actions-v1312 form {
  margin: 0;
}
.form-panel-v1312 {
  position: sticky;
  top: 68px;
}
.app-form-v1312 {
  padding: 18px 20px 20px;
}
.field-v1312 {
  margin-bottom: 14px;
}
.field-v1312 label {
  display: block;
  margin: 0 0 7px;
  color: #dbeafe;
  font-size: 13px;
  font-weight: 700;
}
.field-v1312 small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.field-v1312 input,
.field-v1312 textarea {
  min-height: 44px;
}
.field-v1312 textarea {
  min-height: 86px;
  resize: vertical;
}
.form-grid-v1312 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  gap: 14px;
  align-items: start;
}
.roles-v1312 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 130px;
  overflow: auto;
  padding: 10px;
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 14px;
  background: rgba(3,10,22,.36);
}
.role-v1312 {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(15,23,42,.68);
  font-size: 13px;
  cursor: pointer;
}
.role-v1312 input {
  width: auto;
  min-height: 0;
  margin: 0;
  accent-color: #2f80ed;
}
.role-v1312:has(input:checked) {
  background: rgba(47,128,237,.18);
  border-color: rgba(47,128,237,.74);
}
.icons-v1312 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
  gap: 10px;
  max-height: 176px;
  overflow: auto;
  padding: 10px;
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 15px;
  background: rgba(3,10,22,.32);
}
.icon-choice-v1312 {
  position: relative;
  min-height: 56px;
  display: grid !important;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 13px;
  background: rgba(15,23,42,.7);
  cursor: pointer;
}
.icon-choice-v1312 input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.icon-choice-v1312 span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.icon-choice-v1312:has(input:checked) {
  border-color: rgba(47,128,237,.82);
  box-shadow: 0 0 0 3px rgba(47,128,237,.14);
}
.icon-choice-v1312:has(input:checked)::after {
  content: "✓";
  position: absolute;
  top: -7px;
  right: -7px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #2f80ed;
  font-size: 12px;
  font-weight: 900;
}
.active-v1312 {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin: 2px 0 16px;
  color: #dbeafe;
}
.active-v1312 input {
  width: auto;
  min-height: 0;
  margin: 0;
}
.actions-v1312 {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(148,163,184,.16);
}
.actions-v1312 .ghost-btn,
.actions-v1312 .primary-btn,
.actions-v1312 button {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.apps-list-v1312::-webkit-scrollbar,
.roles-v1312::-webkit-scrollbar,
.icons-v1312::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}
.apps-list-v1312::-webkit-scrollbar-thumb,
.roles-v1312::-webkit-scrollbar-thumb,
.icons-v1312::-webkit-scrollbar-thumb {
  background: rgba(148,163,184,.38);
  border-radius: 999px;
}
.apps-list-v1312::-webkit-scrollbar-track,
.roles-v1312::-webkit-scrollbar-track,
.icons-v1312::-webkit-scrollbar-track {
  background: rgba(15,23,42,.25);
}
@media (max-width: 1180px) {
  .apps-admin-layout-v1312 {
    grid-template-columns: 1fr;
  }
  .form-panel-v1312 {
    position: static;
  }
  .apps-list-v1312 {
    max-height: 420px;
  }
}
@media (max-width: 760px) {
  .apps-admin-page-v1312 {
    padding: 10px;
  }
  .apps-admin-header-v1312 {
    flex-direction: column;
    align-items: stretch;
  }
  .apps-admin-back-v1312 {
    width: 100%;
    text-align: center;
  }
  .apps-panel-head-v1312 {
    padding: 14px;
  }
  .apps-list-v1312,
  .app-form-v1312 {
    padding: 12px;
  }
  .app-item-v1312 {
    grid-template-columns: 1fr;
    padding: 12px;
  }
  .app-actions-v1312 {
    justify-content: flex-start;
  }
  .form-grid-v1312 {
    grid-template-columns: 1fr;
  }
  .actions-v1312 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .app-info-v1312 {
    align-items: flex-start;
  }
  .icons-v1312 {
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
  }
}


/* v1.3.13 - Layout dual aprovado para Gerenciar aplicativos */
.apps-admin-page-v1313 {
  height: calc(100dvh - 52px);
  min-height: 0;
  padding: 20px;
  overflow: hidden;
}
.apps-admin-layout-v1313 {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}
.apps-panel-v1313,
.form-panel-v1313 {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border: 1px solid rgba(148,163,184,.24);
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(47,128,237,.10), transparent 32%),
    linear-gradient(180deg, rgba(13, 24, 42, .96), rgba(7, 15, 28, .98));
  box-shadow: 0 24px 80px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.03);
  overflow: hidden;
}
.panel-header-v1313 {
  padding: 24px 26px 18px;
  border-bottom: 1px solid rgba(148,163,184,.18);
}
.panel-title-v1313 {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}
.panel-icon-v1313 {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #60a5fa;
  background: rgba(47,128,237,.13);
  border: 1px solid rgba(47,128,237,.42);
  font-weight: 900;
}
.panel-icon-v1313.plus {
  color: #fff;
  background: linear-gradient(180deg,#60a5fa,#2f80ed);
}
.panel-header-v1313 h1 {
  margin: 0;
  font-size: clamp(20px, 1.7vw, 28px);
  letter-spacing: -.03em;
}
.panel-header-v1313 p {
  margin: 8px 0 0;
  color: #a7b7cf;
  font-size: 14px;
  line-height: 1.35;
}
.panel-tools-v1313 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}
.search-v1313 {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(148,163,184,.24);
  border-radius: 12px;
  background: rgba(3,7,18,.64);
}
.search-v1313 span {
  color: #cbd5e1;
  font-size: 19px;
}
.search-v1313 input {
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.panel-tools-v1313 select {
  height: 48px;
}
.apps-alert-v1313 {
  margin: 12px 18px 0;
}
.apps-list-v1313 {
  min-height: 0;
  overflow-y: auto;
  padding: 18px 22px 8px;
  scrollbar-width: auto;
}
.app-card-v1313 {
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(148,163,184,.20);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(14,27,46,.78), rgba(8,16,30,.82));
}
.app-card-top-v1313 {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}
.app-icon-admin-v1313 {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(96,165,250,.45);
  background: rgba(3,10,22,.55);
  font-size: 28px;
}
.app-info-v1313 {
  min-width: 0;
}
.app-info-v1313 h3 {
  margin: 0;
  font-size: 21px;
}
.app-info-v1313 small {
  display: block;
  margin-top: 7px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #9fc5ff;
  font-size: 14px;
}
.app-tags-v1313 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 11px;
}
.app-tags-v1313 span:not(.status) {
  padding: 4px 9px;
  border: 1px solid rgba(148,163,184,.15);
  border-radius: 999px;
  background: rgba(148,163,184,.10);
  color: #dbeafe;
  font-size: 12px;
}
.app-card-actions-v1313 {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(148,163,184,.15);
}
.app-card-actions-v1313 form {
  margin: 0;
}
.action-btn-v1313 {
  min-height: 40px;
  min-width: 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: 10px;
  border: 1px solid rgba(47,128,237,.55);
  color: #bfdbfe;
  background: rgba(47,128,237,.10);
  cursor: pointer;
  font-weight: 700;
}
.action-btn-v1313.delete {
  color: #fecaca;
  border-color: rgba(239,68,68,.55);
  background: rgba(239,68,68,.10);
}
.apps-footer-v1313 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-top: 1px solid rgba(148,163,184,.18);
  color: #a7b7cf;
  font-size: 14px;
  background: rgba(3,10,22,.30);
}

/* Painel de formulário */
.form-panel-v1313 {
  grid-template-rows: auto minmax(0, 1fr);
}
.form-header-v1313 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.back-vitrine-v1313 {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(47,128,237,.58);
  border-radius: 13px;
  color: #dbeafe;
  background: rgba(47,128,237,.10);
  font-weight: 700;
}
.app-form-v1313 {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
}
.form-scroll-v1313 {
  min-height: 0;
  overflow-y: auto;
  padding: 22px 26px;
  scrollbar-width: auto;
}
.form-two-v1313 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field-v1313 {
  margin-bottom: 18px;
}
.field-v1313 label {
  margin: 0 0 8px;
  color: #eef6ff;
  font-weight: 800;
  font-size: 14px;
}
.field-v1313 input,
.field-v1313 textarea,
.field-v1313 select {
  min-height: 48px;
  border-radius: 12px;
}
.field-v1313 textarea {
  min-height: 98px;
  resize: vertical;
}
.roles-v1313 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 12px;
}
.role-v1313 {
  height: 48px;
  margin: 0;
  padding: 0 14px;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(148,163,184,.24);
  border-radius: 12px;
  background: rgba(15,23,42,.55);
  color: #dbeafe;
  cursor: pointer;
}
.role-v1313 input {
  width: 18px;
  min-height: 0;
  margin: 0;
  accent-color: #2f80ed;
}
.role-v1313:has(input:checked) {
  border-color: rgba(47,128,237,.80);
  background: rgba(47,128,237,.16);
}
.order-field-v1313 {
  max-width: 180px;
}
.icons-v1313 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(62px, 1fr));
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(148,163,184,.20);
  border-radius: 15px;
  background: rgba(3,10,22,.34);
}
.icon-choice-v1313 {
  position: relative;
  min-height: 62px;
  display: grid !important;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(148,163,184,.22);
  border-radius: 13px;
  background: rgba(15,23,42,.68);
  cursor: pointer;
}
.icon-choice-v1313 input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.icon-choice-v1313 span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.icon-choice-v1313:has(input:checked) {
  border-color: rgba(47,128,237,.90);
  box-shadow: 0 0 0 3px rgba(47,128,237,.16);
}
.icon-choice-v1313:has(input:checked)::after {
  content: "✓";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #2f80ed;
  font-size: 13px;
  font-weight: 900;
}
.hint-v1313 {
  display: block;
  margin-top: 8px;
  color: #a7b7cf;
  font-size: 13px;
}
.active-v1313 {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: #dbeafe;
  font-weight: 700;
}
.active-v1313 input {
  width: auto;
  min-height: 0;
  margin: 0;
}
.form-actions-v1313 {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(220px, 1.6fr);
  gap: 16px;
  padding: 20px 26px;
  border-top: 1px solid rgba(148,163,184,.18);
  background: linear-gradient(180deg, rgba(8,14,26,.90), rgba(5,10,20,1));
}
.secondary-btn-v1313,
.primary-btn-v1313 {
  min-height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  cursor: pointer;
}
.secondary-btn-v1313 {
  border: 1px solid rgba(148,163,184,.32);
  background: rgba(15,23,42,.55);
  color: #e2e8f0;
}
.primary-btn-v1313 {
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, #2563eb, #2f80ed 58%, #0ea5e9);
  box-shadow: 0 16px 34px rgba(37,99,235,.28);
}
.apps-list-v1313::-webkit-scrollbar,
.form-scroll-v1313::-webkit-scrollbar {
  width: 12px;
}
.apps-list-v1313::-webkit-scrollbar-thumb,
.form-scroll-v1313::-webkit-scrollbar-thumb {
  background: rgba(148,163,184,.55);
  border-radius: 999px;
  border: 3px solid rgba(8,16,29,.95);
}
.apps-list-v1313::-webkit-scrollbar-track,
.form-scroll-v1313::-webkit-scrollbar-track {
  background: rgba(15,23,42,.34);
}

/* Responsivo */
@media (max-width: 1180px) {
  .apps-admin-page-v1313 {
    height: auto;
    min-height: calc(100dvh - 52px);
    overflow: visible;
  }
  .apps-admin-layout-v1313 {
    height: auto;
    grid-template-columns: 1fr;
  }
  .apps-panel-v1313,
  .form-panel-v1313 {
    min-height: 560px;
  }
  .apps-list-v1313,
  .form-scroll-v1313 {
    max-height: 620px;
  }
}
@media (max-width: 720px) {
  .apps-admin-page-v1313 {
    padding: 10px;
  }
  .panel-header-v1313 {
    padding: 16px;
  }
  .panel-title-v1313 {
    gap: 10px;
  }
  .panel-icon-v1313 {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
  .panel-tools-v1313,
  .form-two-v1313,
  .form-actions-v1313 {
    grid-template-columns: 1fr;
  }
  .form-header-v1313 {
    flex-direction: column;
  }
  .back-vitrine-v1313 {
    width: 100%;
  }
  .app-card-top-v1313 {
    grid-template-columns: 52px minmax(0, 1fr);
  }
  .app-icon-admin-v1313 {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  .app-card-actions-v1313 {
    justify-content: stretch;
  }
  .action-btn-v1313,
  .app-card-actions-v1313 form {
    width: 100%;
  }
  .order-field-v1313 {
    max-width: none;
  }
}


/* v1.3.16 - contador regressivo de sessão */
.session-countdown-v1316 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(96,165,250,.35);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(47,128,237,.12);
  font-size: 12px;
  white-space: nowrap;
}
.session-countdown-v1316 strong {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  min-width: 70px;
  text-align: center;
}
.timer-dot-v1316 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34,197,94,.6);
}
.session-countdown-v1316.warning {
  border-color: rgba(245,158,11,.58);
  background: rgba(245,158,11,.12);
  color: #fde68a;
}
.session-countdown-v1316.warning .timer-dot-v1316 {
  background: #f59e0b;
  box-shadow: 0 0 10px rgba(245,158,11,.65);
}
.session-countdown-v1316.danger {
  border-color: rgba(239,68,68,.62);
  background: rgba(239,68,68,.14);
  color: #fecaca;
}
.session-countdown-v1316.danger .timer-dot-v1316 {
  background: #ef4444;
  box-shadow: 0 0 10px rgba(239,68,68,.65);
}
@media (max-width: 900px) {
  .session-countdown-v1316 {
    order: 20;
    width: 100%;
    justify-content: center;
  }
}


/* v1.3.17 - contador ao lado do menu Ajuda e página Guia */
.session-countdown-v1317 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(96,165,250,.42);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(47,128,237,.12);
  font-size: 12px;
  white-space: nowrap;
}
.session-countdown-v1317 strong {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  min-width: 66px;
  text-align: center;
}
.session-countdown-v1317.warning {
  border-color: rgba(245,158,11,.62);
  background: rgba(245,158,11,.13);
  color: #fde68a;
}
.session-countdown-v1317.danger {
  border-color: rgba(239,68,68,.66);
  background: rgba(239,68,68,.15);
  color: #fecaca;
}
.suite-topbar.compact {
  flex-wrap: nowrap;
}
.suite-topbar .top-nav {
  flex: 1 1 auto;
  min-width: 0;
}
.suite-topbar .user-menu.compact-user {
  flex: 0 0 auto;
  margin-left: auto;
}

.help-page-v1317 {
  min-height: calc(100dvh - 52px);
  padding: 22px;
  overflow: auto;
}
.help-hero-v1317 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}
.help-hero-text-v1317,
.help-hero-art-v1317,
.help-card-v1317,
.help-flow-v1317 {
  border: 1px solid rgba(148,163,184,.22);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15,27,46,.94), rgba(8,16,29,.96));
  box-shadow: 0 22px 70px rgba(0,0,0,.20);
}
.help-hero-text-v1317 {
  padding: 32px;
}
.help-kicker-v1317 {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(47,128,237,.14);
  border: 1px solid rgba(96,165,250,.32);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.help-hero-text-v1317 h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -.05em;
}
.help-hero-text-v1317 p {
  margin: 0;
  max-width: 780px;
  color: #a7b7cf;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
}
.help-hero-art-v1317 {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
}
.help-hero-art-v1317 svg {
  width: 100%;
  max-width: 520px;
  height: auto;
}
.help-grid-v1317 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.help-card-v1317 {
  padding: 22px;
}
.help-card-v1317.wide {
  grid-column: span 2;
}
.help-icon-v1317 {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #dbeafe;
  background: rgba(47,128,237,.15);
  border: 1px solid rgba(96,165,250,.34);
  font-weight: 900;
  margin-bottom: 14px;
}
.help-card-v1317 h2 {
  margin: 0 0 9px;
  font-size: 20px;
}
.help-card-v1317 p {
  margin: 0 0 12px;
  color: #a7b7cf;
  line-height: 1.45;
}
.help-card-v1317 ul {
  margin: 0;
  padding-left: 18px;
  color: #dbe4f0;
}
.help-card-v1317 li {
  margin: 7px 0;
  line-height: 1.4;
}
.help-card-v1317 code {
  padding: 2px 6px;
  border-radius: 7px;
  color: #bfdbfe;
  background: rgba(3,10,22,.55);
  border: 1px solid rgba(148,163,184,.18);
}
.help-dual-art-v1317 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 14px 0;
}
.help-dual-art-v1317 > div {
  min-height: 150px;
  border: 1px solid rgba(96,165,250,.25);
  border-radius: 16px;
  background: rgba(3,10,22,.34);
  padding: 14px;
}
.help-dual-art-v1317 strong,
.help-dual-art-v1317 span {
  display: block;
}
.help-dual-art-v1317 span {
  margin-top: 5px;
  color: #94a3b8;
  font-size: 13px;
}
.mini-row,
.mini-input,
.mini-actions,
.mini-button {
  height: 16px;
  border-radius: 999px;
  background: rgba(96,165,250,.22);
  margin-top: 14px;
}
.mini-row.short { width: 68%; }
.mini-actions { width: 82%; background: rgba(34,197,94,.22); }
.mini-button { width: 72%; height: 26px; background: linear-gradient(90deg,#2563eb,#0ea5e9); }
.help-flow-v1317 {
  margin-top: 18px;
  padding: 24px;
}
.help-flow-v1317 h2 {
  margin: 0 0 16px;
}
.flow-steps-v1317 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.flow-steps-v1317 div {
  padding: 16px;
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 16px;
  background: rgba(3,10,22,.35);
}
.flow-steps-v1317 span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2f80ed;
  color: #fff;
  font-weight: 900;
  margin-bottom: 10px;
}
.flow-steps-v1317 strong,
.flow-steps-v1317 small {
  display: block;
}
.flow-steps-v1317 small {
  margin-top: 5px;
  color: #94a3b8;
}

@media (max-width: 1180px) {
  .help-grid-v1317 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .help-hero-v1317 { grid-template-columns: 1fr; }
  .flow-steps-v1317 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 900px) {
  .suite-topbar.compact {
    flex-wrap: wrap;
  }
  .session-countdown-v1317 {
    order: 0;
    width: auto;
  }
  .suite-topbar .user-menu.compact-user {
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  .help-page-v1317 { padding: 10px; }
  .help-hero-text-v1317, .help-card-v1317, .help-flow-v1317 { padding: 18px; }
  .help-grid-v1317,
  .flow-steps-v1317,
  .help-dual-art-v1317 {
    grid-template-columns: 1fr;
  }
  .help-card-v1317.wide { grid-column: span 1; }
}

/* v1.4.24 - versão visível e modo de abertura configurável */
.brand-lockup {
  gap: 8px;
}
.brand-version {
  align-self: center;
  padding: 2px 7px;
  border: 1px solid rgba(148,163,184,.24);
  border-radius: 999px;
  color: #93c5fd;
  background: rgba(15,23,42,.56);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}
.login-version,
.software-version {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 0;
  padding: 4px 10px;
  border: 1px solid rgba(148,163,184,.24);
  border-radius: 999px;
  color: #93c5fd;
  background: rgba(15,23,42,.48);
  font-size: 12px;
  font-weight: 800;
}
.software-version {
  margin-top: 14px;
}
