:root {
  --bg: #eef4f7;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-border: rgba(39, 73, 92, 0.12);
  --text: #183442;
  --muted: #607785;
  --primary: #0d7c86;
  --primary-hover: #09656d;
  --danger-bg: #fff1f1;
  --danger-border: #efb3b3;
  --danger-text: #a33c3c;
  --shadow: 0 24px 50px rgba(24, 52, 66, 0.12);
  --dashboard-shadow: 0 12px 24px rgba(24, 52, 66, 0.08);
}

* {
  box-sizing: border-box;
}

[x-cloak] {
  display: none !important;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 124, 134, 0.14), transparent 34%),
    linear-gradient(180deg, #f7fbfd 0%, var(--bg) 100%);
}

.page-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
}

.card {
  width: min(100%, 440px);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 32px 28px;
  backdrop-filter: blur(8px);
}

.card h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.stack {
  display: grid;
  gap: 16px;
}

.stack-lg {
  display: grid;
  gap: 24px;
}

.dashboard-shell {
  width: min(100%, 1120px);
}

.sidebar-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  align-items: start;
}

.sidebar-section {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 16px;
}

.sidebar-section .card,
.main-content-section .card {
  width: 100%;
}

.sidebar-section .card,
.main-content-section .card,
.table-wrap {
  box-shadow: var(--dashboard-shadow);
  backdrop-filter: none;
}

.main-content-section {
  min-width: 0;
}

.sidebar-brand,
.sidebar-meta,
.sidebar-nav {
  width: 100%;
}

.sidebar-brand p,
.sidebar-nav h2 {
  margin: 0;
}

.sidebar-nav {
  gap: 12px;
}

.sidebar-nav h2 {
  font-size: 16px;
}

.nav-item {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(39, 73, 92, 0.08);
  background: rgba(238, 244, 247, 0.72);
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.nav-item:hover {
  background: rgba(13, 124, 134, 0.12);
  border-color: rgba(13, 124, 134, 0.18);
  transform: translateX(2px);
}

.nav-item:focus-visible {
  outline: 3px solid rgba(13, 124, 134, 0.24);
  outline-offset: 2px;
}

.nav-item.is-active {
  background: linear-gradient(135deg, rgba(13, 124, 134, 0.18), rgba(13, 124, 134, 0.08));
  border-color: rgba(13, 124, 134, 0.3);
  color: #0b5560;
  box-shadow: inset 3px 0 0 rgba(13, 124, 134, 0.9);
}

.dashboard-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-status-grid,
.stat-grid,
.entry-grid,
.meta-grid {
  display: grid;
  gap: 16px;
}

.dashboard-status-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.meta-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.self-service-shell {
  max-width: 760px;
  margin: 0 auto;
}

.self-service-status-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.open-query-shell {
  max-width: 820px;
  margin: 0 auto;
}

.open-query-status-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.query-result-panel {
  padding: 20px;
  border: 1px solid rgba(39, 73, 92, 0.12);
  border-radius: 20px;
  background: rgba(247, 251, 253, 0.88);
}

.result-summary-row,
.result-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.result-item-card {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(39, 73, 92, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

.qr-panel {
  align-items: center;
  text-align: center;
  padding: 24px;
  border: 1px dashed rgba(39, 73, 92, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(245, 250, 252, 0.96), rgba(255, 255, 255, 0.92));
}

.qr-image {
  width: min(280px, 72vw);
  height: auto;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(24, 52, 66, 0.12);
  background: #ffffff;
  padding: 12px;
}

.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.section-heading {
  display: grid;
  gap: 6px;
}

.section-heading h2,
.section-heading h3,
.entry-card h3 {
  margin: 0;
}

.section-heading p,
.entry-card p {
  margin: 0;
  color: var(--muted);
}

.button-inline {
  width: auto;
  min-width: 120px;
  padding: 0 18px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(24, 52, 66, 0.42);
  backdrop-filter: blur(8px);
  z-index: 30;
}

.modal-card {
  width: min(100%, 960px);
  max-height: calc(100vh - 48px);
  overflow: auto;
}

/* 自定义缩放和拖拽的弹窗容器 */
.resizable-modal-custom {
  position: fixed;
  margin: 0 !important; /* 清除原有居中margin */
  max-width: none;
  max-height: none;
  overflow: hidden; /* 防止内部溢出破坏外框，内部滚动交由 modal-body 处理 */
  display: flex;
  flex-direction: column;
}

.resizable-modal-custom .modal-body {
  flex: 1;
  overflow: auto; /* 仅内部区域滚动 */
}

/* 弹窗头部拖拽区域 */
.mock-modal-drag-header {
  cursor: move;
  user-select: none;
}

/* 缩放手柄基础样式 */
.resize-handle {
  position: absolute;
  z-index: 100;
}

/* 四个边 */
.resize-n { top: -5px; left: 0; right: 0; height: 10px; cursor: n-resize; }
.resize-s { bottom: -5px; left: 0; right: 0; height: 10px; cursor: s-resize; }
.resize-e { top: 0; right: -5px; bottom: 0; width: 10px; cursor: e-resize; }
.resize-w { top: 0; left: -5px; bottom: 0; width: 10px; cursor: w-resize; }

/* 四个角 (增加 z-index 和面积以便更容易选中) */
.resize-nw { top: -5px; left: -5px; width: 15px; height: 15px; cursor: nw-resize; z-index: 101; }
.resize-ne { top: -5px; right: -5px; width: 15px; height: 15px; cursor: ne-resize; z-index: 101; }
.resize-sw { bottom: -5px; left: -5px; width: 15px; height: 15px; cursor: sw-resize; z-index: 101; }
.resize-se { bottom: -5px; right: -5px; width: 15px; height: 15px; cursor: se-resize; z-index: 101; }

/* 支持自由缩放的弹窗容器 (原生 resize，已废弃) */
.resizable-modal {
  resize: both;          /* 允许用户在水平和垂直方向上拖动调整大小 */
  overflow: auto;        /* 必须配合 overflow: auto 或 hidden 才能生效 */
  min-width: 400px;      /* 限制最小缩放宽度，防止布局崩塌 */
  min-height: 300px;     /* 限制最小缩放高度 */
  max-width: 95vw;       /* 最大不要超过屏幕宽度 */
  max-height: 95vh;      /* 最大不要超过屏幕高度 */
  padding-bottom: 24px;  /* 给右下角的拖动把手留一点空间 */
}

/* 隐藏弹窗背景在缩放时可能的干涉 */
.modal-backdrop {
  position: fixed;
}

.modal-header,
.modal-footer,
.inline-actions,
.card-section-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.modal-header {
  align-items: flex-start;
}

.card-section-footer {
  padding-top: 8px;
  border-top: 1px solid rgba(39, 73, 92, 0.08);
  flex-wrap: wrap;
}

.modal-action-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.modal-footer-status {
  display: grid;
  gap: 8px;
}

.inline-actions-wrap {
  flex-wrap: wrap;
}

.summary-window-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.modal-body {
  display: grid;
  gap: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field-span-full {
  grid-column: 1 / -1;
}

.recipient-list {
  display: grid;
  gap: 16px;
}

.nested-panel {
  border: 1px solid rgba(39, 73, 92, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.recipient-item {
  width: 100%;
  padding: 20px 22px;
}

.card-subsection {
  display: grid;
  gap: 16px;
}

.card-subsection + .card-subsection {
  padding-top: 24px;
  border-top: 1px solid rgba(39, 73, 92, 0.08);
}

.info-message {
  border: 1px solid rgba(13, 124, 134, 0.2);
  border-radius: 14px;
  background: rgba(13, 124, 134, 0.08);
  color: var(--primary);
  padding: 12px 14px;
  font-size: 14px;
}

.text-truncate-cell {
  max-width: 150px; /* 默认最大宽度，根据表格调整 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
}

.mock-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.mock-photo-item {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(39, 73, 92, 0.1);
  background-color: rgba(245, 250, 252, 0.96);
}

.button-sm {
  padding: 6px 12px;
  font-size: 13px;
  height: 32px;
}

/* 违章页面专用：自定义 DIV 模拟关闭按钮，彻底避免与全局 .button 类冲突 */
.violations-custom-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;           /* 增加宽度 */
  height: 36px;          /* 增加高度 */
  border-radius: 8px;    /* 圆角稍微大一点，更符合现代卡片风格 */
  background-color: #1f5560;  /* 采用系统主题深青色 */
  color: #ffffff;        /* 文字颜色为纯白 */
  font-size: 14px;       /* 增大字号匹配更大尺寸 */
  font-weight: 500;      /* 让按钮文字稍微加粗更清晰 */
  cursor: pointer;       /* 悬浮时呈现可点击手势 */
  user-select: none;     /* 防止双击选中文本 */
  transition: background-color 0.18s ease, transform 0.1s ease; /* 增加点击过渡动画 */
  flex-shrink: 0;        /* 避免被弹性盒压缩 */
}

/* 悬停时的视觉反馈 */
.violations-custom-close-btn:hover {
  background-color: #164048; /* 悬停时加深背景色 */
}

/* 按下时的视觉反馈 */
.violations-custom-close-btn:active {
  transform: scale(0.96); /* 点击时产生微微缩小的手感反馈 */
}

.stat-card,
.entry-card,
.result-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(39, 73, 92, 0.1);
  background: rgba(255, 255, 255, 0.88);
}

.entry-link {
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.entry-link:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 124, 134, 0.28);
  box-shadow: 0 18px 34px -28px rgba(13, 124, 134, 0.7);
}

.entry-link:focus-visible {
  outline: 3px solid rgba(13, 124, 134, 0.28);
  outline-offset: 3px;
}

.stat-card-active {
  background: rgba(10, 147, 101, 0.08);
}

.stat-card-expired {
  background: rgba(204, 70, 70, 0.08);
}

.stat-card-waiting {
  background: rgba(214, 128, 37, 0.1);
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
}

.result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.status-active {
  background: rgba(10, 147, 101, 0.16);
  color: #0d7a57;
}

.status-success,
.status-resolved {
  background: rgba(10, 147, 101, 0.12);
  color: #18684d;
}

.status-pending {
  background: rgba(13, 124, 134, 0.14);
  color: #0b6570;
}

.status-running,
.status-disputed {
  background: rgba(214, 128, 37, 0.16);
  color: #b36a0a;
}

.status-expired {
  background: rgba(204, 70, 70, 0.16);
  color: #b03b3b;
}

.status-failed {
  background: rgba(204, 70, 70, 0.16);
  color: #b03b3b;
}

.status-skipped,
.status-neutral {
  background: rgba(96, 119, 133, 0.16);
  color: #445864;
}

.status-blocked {
  background: rgba(204, 70, 70, 0.12);
  color: #9b3636;
}

.status-waiting_scan,
.status-restoring,
.status-waiting_resume {
  background: rgba(214, 128, 37, 0.16);
  color: #b36a0a;
}

.status-unknown,
.status-disabled,
.status-suspected_expired,
.status-restored,
.status-blocked_login_expired {
  background: rgba(96, 119, 133, 0.16);
  color: #445864;
}

.entry-grid {
  grid-template-columns: 1fr;
}

.inspect-panel,
.entry-panel,
.dashboard-header {
  width: 100%;
}

.entry-panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.task-card {
  gap: 12px;
}

.task-result-text {
  text-align: right;
  word-break: break-word;
}

.task-actions {
  display: flex;
  justify-content: flex-end;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 14px;
  color: var(--muted);
}

.field-hint {
  font-size: 13px;
  color: var(--muted);
}

.field input,
.field select {
  width: 100%;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(96, 119, 133, 0.28);
  padding: 0 14px;
  font-size: 15px;
  color: var(--text);
  background: #fff;
}

.field textarea {
  width: 100%;
  min-height: 120px;
  border-radius: 14px;
  border: 1px solid rgba(96, 119, 133, 0.28);
  padding: 14px;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(13, 124, 134, 0.18);
  border-color: var(--primary);
}

.checkbox-field {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 4px;
  color: var(--text);
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.bootstrap-cookie-textarea {
  min-height: 140px;
  font-family: ui-monospace, SFMono-Regular, SFMono, Menlo, monospace;
}

.violation-filter-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.summary-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.summary-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.summary-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(39, 73, 92, 0.1);
  background: rgba(238, 244, 247, 0.72);
  font-size: 13px;
  color: var(--text);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(39, 73, 92, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  contain: paint;
}

.accounts-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.accounts-table th,
.accounts-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(39, 73, 92, 0.08);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.accounts-table th {
  color: var(--muted);
  font-weight: 600;
  background: rgba(238, 244, 247, 0.7);
}

.accounts-table tbody tr:last-child td {
  border-bottom: 0;
}

.accounts-table tbody tr.is-highlighted-row td {
  background: rgba(13, 124, 134, 0.1);
  box-shadow: inset 3px 0 0 rgba(13, 124, 134, 0.85);
}

.accounts-table .button {
  width: auto;
  min-width: 96px;
  padding: 0 14px;
}

.account-row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.table-action-stack {
  display: grid;
  gap: 10px;
  min-width: 140px;
}

.company-primary-action {
  justify-content: center;
}

.table-action-secondary {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.table-action-secondary .button,
.table-action-secondary .entry-link {
  min-width: auto;
}

.table-inline-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.table-inline-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.table-inline-button:hover {
  text-decoration: underline;
}

.table-inline-button.is-active {
  color: #0b5f68;
  text-decoration: underline;
}

.table-inline-link:hover {
  text-decoration: underline;
}

.table-inline-link:focus-visible,
.table-inline-button:focus-visible {
  outline: 3px solid rgba(13, 124, 134, 0.28);
  outline-offset: 3px;
  border-radius: 6px;
}

.violation-table td:last-child {
  display: table-cell;
}

.session-summary-cell {
  display: grid;
  gap: 8px;
}

.table-status {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 100%;
}

.table-status .status-pill {
  min-width: auto;
}

.table-text-block,
.table-code-block {
  display: block;
  min-width: 220px;
  max-width: 360px;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.5;
}

.table-code-block {
  white-space: pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  color: #17353d;
}

.table-json-block {
  margin: 0;
  min-width: 220px;
  max-width: 360px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(31, 85, 96, 0.08);
  color: #17353d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.5;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.status-detail-cell {
  display: grid;
  gap: 8px;
  min-width: 120px;
}

.session-recovery-qr {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.session-recovery-qr-image {
  width: 240px;
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(39, 73, 92, 0.12);
  background: #fff;
  padding: 12px;
}

.session-recovery-token {
  display: grid;
  gap: 8px;
  width: min(100%, 560px);
}

.session-recovery-token-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.session-recovery-token-value {
  flex: 1 1 320px;
  min-width: 0;
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(31, 85, 96, 0.08);
  color: #17353d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.session-recovery-token-copy {
  width: auto;
  min-width: 88px;
  height: 40px;
  padding: 0 14px;
}

.button {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease;
}

.button:hover {
  background: var(--primary-hover);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.button-secondary {
  background: #1f5560;
}

.error-message {
  border: 1px solid var(--danger-border);
  border-radius: 14px;
  background: var(--danger-bg);
  color: var(--danger-text);
  padding: 12px 14px;
  font-size: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(13, 124, 134, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.meta-block {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(13, 124, 134, 0.06);
}

.meta-label {
  font-size: 13px;
  color: var(--muted);
}

.meta-value {
  font-size: 18px;
  font-weight: 700;
}

.helper-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .page-shell {
    padding: 16px;
    align-items: stretch;
  }

  .sidebar-shell {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .sidebar-section {
    position: static;
    gap: 12px;
  }

  .sidebar-nav {
    grid-auto-flow: row;
  }

  .sidebar-nav h2 {
    font-size: 15px;
  }

  .nav-item {
    min-height: 44px;
    padding: 0 14px;
  }

  .card {
    width: 100%;
    border-radius: 20px;
    padding: 24px 18px;
    align-self: center;
  }

  .card h1 {
    font-size: 24px;
  }

  .dashboard-header-row,
  .result-row,
    .modal-header,
  .modal-footer,
  .inline-actions,
  .card-section-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-status-grid,
  .meta-grid,
  .stat-grid,
  .dashboard-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .modal-backdrop {
    padding: 12px;
    align-items: stretch;
  }

  .modal-card {
    max-height: calc(100vh - 24px);
  }

  .recipient-item {
    padding: 18px 16px;
  }

  .button-inline {
    width: 100%;
  }
}
