:root {
  --bg: #040610;
  --surface: rgba(10, 15, 30, 0.84);
  --surface-soft: rgba(10, 15, 30, 0.72);
  --surface-strong: rgba(8, 12, 24, 0.96);
  --surface-elevated: rgba(255, 255, 255, 0.038);
  --border: rgba(148, 163, 184, 0.18);
  --border-strong: rgba(148, 163, 184, 0.28);
  --text: #f5f7fb;
  --muted: #98a3b8;
  --muted-strong: #cdd5e1;
  --accent: #7c5cff;
  --accent-soft: rgba(124, 92, 255, 0.16);
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-soft: 0 14px 34px rgba(3, 7, 18, 0.18);
  --shadow-hover: 0 22px 44px rgba(3, 7, 18, 0.24);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 16%, rgba(60, 78, 168, 0.16), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(124, 92, 255, 0.18), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(16, 118, 214, 0.08), transparent 34%),
    linear-gradient(180deg, #03050d 0%, #060915 38%, #0a1122 100%);
  background-color: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(108, 99, 255, 0.9);
  outline-offset: 2px;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

form {
  margin: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(34px, 5vw, 44px);
  line-height: 1.04;
  font-weight: 650;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.12;
  font-weight: 650;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.app-shell {
  min-height: 100vh;
}

.premium-page-shell {
  position: relative;
  isolation: isolate;
}

.premium-page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(96, 165, 250, 0.08), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(124, 92, 255, 0.12), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(124, 92, 255, 0.06), transparent 38%);
}

.page-container,
.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.page-content {
  padding: 36px 0 64px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 7, 15, 0.78);
  box-shadow: 0 18px 36px rgba(2, 6, 18, 0.16);
  backdrop-filter: blur(16px);
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.site-header-inner {
  min-height: auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: auto;
  height: 30px;
  max-width: 144px;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.brand-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand-title {
  color: rgba(245, 247, 251, 0.96);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  color: rgba(190, 198, 214, 0.72);
  font-size: 12px;
  letter-spacing: -0.01em;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-link,
.user-chip {
  color: rgba(245, 247, 251, 0.88);
  font-size: 14px;
}

.nav-link {
  font-weight: 500;
  padding: 8px 2px;
  position: relative;
  opacity: 0.8;
  transition: color 140ms ease, opacity 140ms ease;
}

.nav-link:hover {
  color: rgba(245, 247, 251, 0.98);
  opacity: 1;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.82), rgba(96, 165, 250, 0.7));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: rgba(245, 247, 251, 0.98);
  font-weight: 600;
  opacity: 1;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.user-chip {
  padding: 0 10px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  color: rgba(245, 247, 251, 0.94);
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.messages {
  display: grid;
  gap: 12px;
  margin-bottom: var(--space-3);
}

.alert {
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012)),
    var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.alert.success {
  border-color: rgba(34, 197, 94, 0.25);
}

.alert.error {
  border-color: rgba(239, 68, 68, 0.3);
}

.section-label {
  display: inline-block;
  color: #c6b8ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.page-subtitle,
.page-note,
.item-subtitle,
.integration-detail,
.prompt-body,
.field-help,
.metric-subtitle,
.contact-item p,
.preview-item p,
.empty-state,
.detail-list dt,
.brand-subtitle {
  color: var(--muted);
}

.page-subtitle,
.page-note,
.prompt-body,
.preview-item p,
.contact-item p {
  line-height: 1.6;
}

.page-subtitle,
.item-subtitle,
.integration-title,
.integration-detail,
.prompt-body,
.detail-list dd {
  overflow-wrap: anywhere;
}

.page-subtitle {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted-strong);
}

.page-note {
  font-size: 14px;
  line-height: 1.65;
}

.meta-chip,
.hero-chip,
.tag,
.status,
.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(15, 23, 42, 0.8);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--muted);
  white-space: nowrap;
  overflow-wrap: normal;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.tag-wrap {
  white-space: normal;
  overflow-wrap: anywhere;
}

.status.succeeded,
.status-badge.ready {
  background: #022c22;
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(16, 185, 129, 0.04);
}

.status.running {
  background: #2f1c57;
  color: #c4b5fd;
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(139, 92, 246, 0.04);
}

.status-badge.pending {
  background: #2d1a05;
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(245, 158, 11, 0.04);
}

.status.failed {
  background: #3b0d14;
  color: #fb7185;
  border-color: rgba(244, 63, 94, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(244, 63, 94, 0.04);
}

.status.cancelled {
  background: rgba(71, 85, 105, 0.28);
  color: #cbd5e1;
  border-color: rgba(148, 163, 184, 0.22);
}

.status.big {
  min-height: 36px;
  padding: 0 12px;
}

.status-badge.inactive,
.status.queued,
.muted-tag {
  background: #1f2937;
  color: var(--muted);
  border-color: #374151;
}

.primary-btn,
.ghost-btn,
.primary-link,
.artifact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(5, 10, 24, 0.14);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease,
    color 0.15s ease;
}

.primary-btn,
.primary-link {
  background:
    linear-gradient(180deg, #7b72ff 0%, #6659ff 100%);
  color: #ffffff;
  border: 1px solid rgba(167, 139, 250, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 28px rgba(76, 57, 170, 0.24);
}

.ghost-btn,
.artifact-link {
  border: 1px solid rgba(148, 163, 184, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(12, 18, 34, 0.72);
  color: var(--text);
}

.ghost-btn.is-accent {
  border-color: rgba(108, 99, 255, 0.26);
  background: rgba(108, 99, 255, 0.12);
  color: #ddd6fe;
}

.ghost-btn.is-danger {
  border-color: rgba(239, 68, 68, 0.24);
  background: rgba(239, 68, 68, 0.08);
  color: #fecaca;
}

.site-header .primary-btn {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(124, 92, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(124, 92, 255, 0.22), rgba(124, 92, 255, 0.12)),
    rgba(255, 255, 255, 0.04);
  color: #f8f7ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-header .primary-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 92, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(124, 92, 255, 0.28), rgba(124, 92, 255, 0.16)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 28px rgba(22, 28, 56, 0.24);
}

.site-header .ghost-btn {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  color: rgba(245, 247, 251, 0.88);
  box-shadow: none;
}

.site-header .ghost-btn:hover {
  border-color: rgba(124, 92, 255, 0.22);
  color: rgba(245, 247, 251, 0.98);
  box-shadow: 0 10px 24px rgba(3, 7, 18, 0.16);
}

.primary-btn:hover,
.ghost-btn:hover,
.primary-link:hover,
.artifact-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(5, 10, 24, 0.22);
}

.primary-btn:hover,
.primary-link:hover {
  border-color: rgba(167, 139, 250, 0.34);
  background: linear-gradient(180deg, #837bff 0%, #6c63ff 100%);
}

.ghost-btn:hover,
.artifact-link:hover {
  border-color: rgba(167, 139, 250, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022)),
    rgba(16, 23, 40, 0.82);
}

.ghost-btn.is-accent:hover {
  border-color: rgba(108, 99, 255, 0.42);
  background: rgba(108, 99, 255, 0.16);
  color: #ffffff;
}

.ghost-btn.is-danger:hover {
  border-color: rgba(239, 68, 68, 0.38);
  background: rgba(239, 68, 68, 0.12);
  color: #ffffff;
}

.primary-btn:disabled,
.ghost-btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.artifact-link {
  width: 100%;
  justify-content: flex-start;
}

.ghost-btn.small {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 13px;
}

.card,
.panel,
.metric-card,
.site-card,
.run-card,
.integration-card,
.prompt-card,
.preview-card,
.auth-form-card,
.feature-card,
.contact-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  position: relative;
  min-height: 100%;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 0.4s ease forwards;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.card::before,
.panel::before,
.metric-card::before,
.site-card::before,
.run-card::before,
.integration-card::before,
.prompt-card::before,
.preview-card::before,
.auth-form-card::before,
.feature-card::before,
.contact-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.11), transparent);
  pointer-events: none;
}

.panel {
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.panel.soft-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.01)),
    rgba(15, 23, 42, 0.76);
}

.metric-card,
.site-card,
.run-card,
.integration-card,
.prompt-card,
.preview-card,
.auth-form-card,
.feature-card,
.contact-item {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.metric-card,
.site-card,
.run-card,
.integration-card,
.prompt-card,
.feature-card,
.contact-item {
  height: 100%;
}

.metric-card:hover,
.site-card:hover,
.run-card:hover,
.integration-card:hover,
.prompt-card:hover,
.feature-card:hover,
.contact-item:hover {
  transform: translateY(-3px);
  border-color: rgba(108, 99, 255, 0.22);
  box-shadow: var(--shadow-hover);
  background-color: rgba(17, 24, 39, 0.92);
}

.empty-state {
  padding: 20px;
  border: 1px dashed rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008)),
    rgba(15, 23, 42, 0.5);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 22px;
}

.panel-header-copy {
  display: grid;
  gap: 10px;
}

.panel-header-copy h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.item-title {
  font-size: 17px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.item-subtitle {
  font-size: 14px;
  margin-top: 4px;
}

.detail-list {
  display: grid;
  gap: 12px;
}

.detail-list div {
  display: grid;
  grid-template-columns: minmax(120px, 0.55fr) minmax(0, 1fr);
  gap: 16px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.01)),
    rgba(15, 23, 42, 0.44);
}

.detail-list dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-list dd {
  margin: 0;
  text-align: right;
}

.card-actions {
  margin-top: auto;
}

.card-actions form,
.page-header-actions form {
  display: inline-flex;
}

.field-wrap,
.auth-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.field-label {
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.field-wrap input,
.field-wrap select,
.field-wrap textarea,
.auth-form input,
.auth-form select,
.auth-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
    rgba(15, 23, 42, 0.9);
  color: var(--text);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background-color 0.16s ease;
}

.field-wrap input:focus,
.field-wrap select:focus,
.field-wrap textarea:focus,
.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus {
  border-color: rgba(108, 99, 255, 0.55);
  box-shadow:
    0 0 0 4px rgba(108, 99, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.field-wrap textarea {
  min-height: 128px;
  resize: vertical;
}

.field-wrap input::placeholder,
.field-wrap textarea::placeholder,
.auth-form input::placeholder,
.auth-form textarea::placeholder {
  color: #6f7a90;
}

.field-wrap.checkbox-wrap {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(15, 23, 42, 0.72);
}

.field-wrap.checkbox-wrap input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  padding: 0;
}

.field-wrap.checkbox-wrap .field-label {
  order: 2;
}

.field-help,
.field-error {
  font-size: 13px;
  line-height: 1.55;
}

.field-help {
  color: var(--muted-strong);
}

.field-error {
  color: #fca5a5;
}

.permission-matrix {
  display: grid;
  gap: 12px;
}

.permission-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 90px 90px 110px;
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.01)),
    rgba(15, 23, 42, 0.38);
}

.permission-head {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.permission-site {
  display: grid;
  gap: 5px;
}

.permission-check {
  display: flex;
  justify-content: center;
}

.permission-mobile-label {
  display: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.permission-check input {
  width: 16px;
  height: 16px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: var(--space-3);
}

.stack-form {
  display: grid;
}

.log-box {
  margin: 0;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background:
    linear-gradient(180deg, rgba(6, 10, 22, 0.96), rgba(10, 14, 28, 0.98));
  color: var(--text);
  font-size: 13px;
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  max-height: 360px;
  overflow: auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.section-spacer {
  margin-top: var(--space-3);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none;
  }

  .card,
  .panel,
  .metric-card,
  .site-card,
  .run-card,
  .integration-card,
  .prompt-card,
  .preview-card,
  .auth-form-card,
  .feature-card,
  .contact-item {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 768px) {
  .page-container,
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .site-header-inner {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .brand-logo {
    height: 28px;
    max-width: 128px;
  }

  .brand-subtitle {
    display: none;
  }

  .user-chip {
    display: none;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 22px;
  }

  .detail-list div {
    grid-template-columns: 1fr;
  }

  .detail-list dd {
    text-align: left;
  }

  .permission-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .permission-head {
    display: none;
  }

  .permission-site {
    padding-bottom: 4px;
  }

  .permission-check {
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
  }

  .permission-mobile-label {
    display: inline-flex;
  }
}
