﻿:root {
  --bg: #f3f6fb;
  --bg-soft: #eef3ff;
  --surface: #ffffff;
  --surface-soft: #f9fbff;
  --text: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --line-strong: #d0d5dd;
  --primary: #2563eb;
  --primary-strong: #1d4ed8;
  --primary-soft: #eaf1ff;
  --ok: #067647;
  --ok-soft: #ecfdf3;
  --danger: #b42318;
  --danger-soft: #fff4f2;
  --warn: #b54708;
  --warn-soft: #fff6ed;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --shadow-soft: 0 14px 34px rgba(16, 24, 40, 0.06);
  --shadow-card: 0 10px 26px rgba(16, 24, 40, 0.05);
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", "DM Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 540px at 8% -8%, #dce9ff 0%, rgba(220, 233, 255, 0) 64%),
    radial-gradient(920px 460px at 100% 0%, #e9f6ff 0%, rgba(233, 246, 255, 0) 62%),
    var(--bg);
  line-height: 1.45;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-strong);
  text-decoration: underline;
}

.admin-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border-right: 1px solid var(--line);
  padding: 22px 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 8px 18px;
  color: #0f2f6f;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 11px;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid #d3e3ff;
}

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

.nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.nav a i {
  width: 18px;
  text-align: center;
  color: #64748b;
}

.nav a.active,
.nav a:hover {
  color: #123a87;
  text-decoration: none;
  background: var(--primary-soft);
  border-color: #cfddff;
}

.nav a.active i,
.nav a:hover i {
  color: var(--primary);
}

.sidebar-footer {
  margin-top: 20px;
  padding: 14px 12px 4px;
  border-top: 1px solid var(--line);
}

.logout-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b42318;
  font-weight: 700;
  font-size: 14px;
}

.logout-link:hover {
  color: #912018;
}

.content {
  width: min(1780px, calc(100vw - 312px));
  margin: 0 auto;
  padding: 26px;
}

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

.page-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0f172a;
}

.page-title i {
  color: var(--primary);
  font-size: 22px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 14px;
}

.card-title {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.section-title {
  margin: 16px 0 10px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.muted-text {
  color: var(--muted);
}

.public-link {
  margin-top: 4px;
  font-size: 13px;
}

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

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

label {
  display: block;
  margin-bottom: 6px;
  color: #475467;
  font-size: 13px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: #fff;
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:hover,
textarea:hover,
select:hover {
  border-color: #bec8d5;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #84adff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

textarea {
  min-height: 96px;
  resize: vertical;
}

.field {
  margin-bottom: 10px;
}

.field-last {
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: #0f172a;
  border-radius: 11px;
  min-height: 38px;
  padding: 8px 13px;
  font-family: "Manrope", "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease, background-color 0.12s ease;
}

.btn i {
  margin-right: 0;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: #b9c4d7;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  color: #fff;
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
}

.btn-primary:hover {
  color: #fff;
  border-color: var(--primary-strong);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.btn-ok {
  color: var(--ok);
  border-color: #b7ebcd;
  background: #fff;
}

.btn-danger {
  color: var(--danger);
  border-color: #f2c8c5;
  background: #fff;
}

.btn-sm {
  min-height: 32px;
  border-radius: 9px;
  padding: 6px 10px;
  font-size: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d4dff5;
  border-radius: 999px;
  background: #f2f7ff;
  color: #16449b;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
}

.notice {
  margin-bottom: 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
}

.notice.ok {
  color: var(--ok);
  border-color: #abeac6;
  background: var(--ok-soft);
}

.notice.warn {
  color: var(--warn);
  border-color: #f2d29f;
  background: var(--warn-soft);
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  background: #fff;
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  padding: 12px 10px;
}

.table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #475467;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  background: #f8fafe;
}

.table tbody tr {
  transition: background-color 0.14s ease;
}

.table tbody tr:hover {
  background: #f9fbff;
}

.table code {
  background: #f2f4f7;
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 12px;
}

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

.push-set-create {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.push-status-card,
.push-create-card,
.push-set-card {
  border-radius: 16px;
}

.push-status-note {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.4;
}

.push-set-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.push-set-name-field {
  margin-bottom: 10px;
}

.push-table th,
.push-table td {
  vertical-align: top;
}

.push-table input[type="text"],
.push-table input[type="number"] {
  min-width: 120px;
}

.push-message-input {
  min-height: 86px;
  resize: vertical;
  min-width: 210px;
}

.push-delay-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(84px, 1fr));
  gap: 8px;
}

.push-delay-grid label {
  margin-bottom: 4px;
  font-size: 11px;
  color: #667085;
}

.push-image-preview {
  width: 96px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 6px;
  background: #fff;
}

.push-image-preview img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.push-remove-image {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 12px;
  color: #475467;
}

.push-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #344054;
  font-size: 13px;
  font-weight: 700;
}

.push-toggle input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.domain-inline-guide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px dashed #cfe0ff;
  background: #f7fbff;
  color: #1d3358;
  font-size: 14px;
}

.guide-close-btn {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid #cfddff;
  border-radius: 999px;
  background: #fff;
  color: #365f9f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.guide-close-btn:hover {
  background: #eef4ff;
}

.apps-toolbar {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.apps-search-wrap {
  position: relative;
  flex: 1 1 380px;
  max-width: 640px;
}

.apps-search-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #98a2b3;
  font-size: 13px;
  pointer-events: none;
}

.apps-search-wrap input {
  padding-left: 36px;
}

.apps-toolbar-right {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.apps-page-size {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.apps-page-size label {
  margin: 0;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
}

.apps-page-size select {
  width: auto;
  min-width: 82px;
}

.apps-results-meta {
  color: #475467;
  font-size: 13px;
  font-weight: 700;
}

.apps-empty-row td {
  text-align: center;
  color: #667085;
  font-size: 14px;
  padding: 20px 12px;
}

.apps-pagination {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.apps-pagination-meta {
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.apps-pagination-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.apps-page-indicator {
  min-width: 62px;
  text-align: center;
  color: #344054;
  font-size: 13px;
  font-weight: 700;
}

.apps-table th:nth-child(4),
.apps-table td:nth-child(4),
.apps-table th:nth-child(5),
.apps-table td:nth-child(5) {
  width: 150px;
  min-width: 150px;
  vertical-align: top;
}

.app-menu {
  position: relative;
  display: inline-block;
}

.app-menu > summary {
  list-style: none;
}

.app-menu > summary::-webkit-details-marker {
  display: none;
}

.app-menu-trigger {
  min-width: 94px;
}

.app-menu[open] .app-menu-trigger {
  color: #13419a;
  border-color: #cfddff;
  background: var(--primary-soft);
}

.app-menu-list {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 30;
  min-width: 224px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.app-menu-item {
  width: 100%;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #1d2939;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  text-align: left;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.app-menu-item:hover {
  background: #f2f6ff;
  text-decoration: none;
}

.app-menu-item.danger {
  color: var(--danger);
}

.app-menu-item.danger:hover {
  background: var(--danger-soft);
}

.app-menu-form {
  margin: 0;
}

.app-note-cell {
  display: grid;
  gap: 6px;
}

.app-note-input-wrap {
  position: relative;
}

.app-note-input {
  min-height: 90px;
  padding-right: 44px;
  resize: vertical;
  font-size: 13px;
  line-height: 1.35;
}

.app-note-save-btn {
  display: none;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  min-width: 28px;
  height: 28px;
  min-height: 28px;
  padding: 0;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

.app-note-cell.has-text .app-note-save-btn {
  display: inline-flex;
}

.app-note-status {
  min-height: 16px;
  font-size: 12px;
  color: #667085;
}

.app-note-status.ok {
  color: var(--ok);
}

.app-note-status.err {
  color: var(--danger);
}

.settings-span-2 {
  grid-column: 1 / -1;
}

.settings-inline-row {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.settings-inline-label label {
  margin-bottom: 0;
}

.settings-cloak-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 12px;
}

.edit-layout {
  display: grid;
  gap: 16px;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 430px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.tab-btn {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: #334155;
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.16s ease;
}

.tab-btn:hover {
  border-color: #b6c4d7;
}

.tab-btn.active {
  color: #13419a;
  background: var(--primary-soft);
  border-color: #cadbff;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  width: 100%;
}

.plot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.plot-card {
  min-height: 360px;
}

.plot {
  width: 100%;
  height: 300px;
}

.preview-phone {
  width: 100%;
  position: sticky;
  top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 14px;
  box-shadow: var(--shadow-card);
}

.preview-phone-title {
  margin: 0 auto 12px;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #d6e2ff;
  background: #f2f7ff;
  color: #17459d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.phone-shell {
  width: min(100%, 368px);
  margin: 2px auto 0;
  border-radius: 30px;
  padding: 8px 8px 10px;
  border: 1px solid #0b1220;
  background: linear-gradient(160deg, #1f2937 0%, #0f172a 100%);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.28);
}

.phone-notch {
  width: 116px;
  height: 18px;
  margin: 0 auto 7px;
  border-radius: 0 0 14px 14px;
  background: #020617;
}

.phone-screen {
  height: 640px;
  border-radius: 21px;
  overflow: hidden;
  border: 1px solid #d5deeb;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.phone-home {
  width: 108px;
  height: 6px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.preview-frame {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0 auto;
  border: 0;
  background: #fff;
}

.media-note {
  margin-top: 6px;
  font-size: 12px;
}

.media-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.media-thumb {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.media-thumb-draggable {
  cursor: grab;
  user-select: none;
}

.media-thumb-draggable.is-dragging {
  opacity: 0.58;
  border-color: #84adff;
  box-shadow: 0 0 0 2px rgba(132, 173, 255, 0.2);
}

.media-drag-handle {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.82);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  z-index: 3;
  cursor: grab;
}

.media-drag-handle i {
  pointer-events: none;
}

.media-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.pending-media {
  margin-top: 10px;
}

.media-thumb-pending {
  border-style: dashed;
  border-color: #b7cdf8;
  background: #f7fbff;
}

.media-thumb-pending .thumb-remove {
  background: rgba(34, 55, 90, 0.88);
}

.media-thumb-pending .thumb-remove:hover {
  background: rgba(180, 35, 24, 0.92);
}

.media-thumb-icon {
  margin-top: 8px;
  max-width: 96px;
}

.media-thumb-icon img {
  aspect-ratio: 1 / 1;
}

.thumb-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.86);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 4;
}

.thumb-remove:hover {
  background: rgba(180, 35, 24, 0.92);
}

.domain-guide {
  display: grid;
  gap: 10px;
}

.domain-step {
  color: #344054;
  font-size: 14px;
}

.code-block {
  margin: 0;
  border: 1px solid #d6deeb;
  border-radius: 10px;
  background: #f7faff;
  padding: 10px 12px;
  overflow-x: auto;
  font-size: 12px;
}

.domain-add-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 800;
}

.status-chip.ok {
  color: var(--ok);
  background: var(--ok-soft);
  border-color: #abeac6;
}

.status-chip.warn {
  color: var(--warn);
  background: var(--warn-soft);
  border-color: #f3d8ac;
}

.status-chip.soft {
  color: #194185;
  background: #eef4ff;
  border-color: #ccdcff;
}

.domain-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.comment-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  margin-bottom: 10px;
}

.comment-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.auth-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 16px;
}

.auth-card {
  width: 460px;
  max-width: calc(100vw - 24px);
}

.kpis {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.kpi {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.04);
}

.kpi-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.kpi-value {
  margin-top: 6px;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

@media (max-width: 1480px) {
  .content {
    width: calc(100vw - 312px);
  }

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

@media (max-width: 1250px) {
  .content {
    width: 100%;
    padding: 20px;
  }

  .edit-layout {
    grid-template-columns: 1fr;
  }

  .preview-phone {
    position: static;
  }

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

  .domain-add-form {
    grid-template-columns: 1fr;
  }

  .push-set-create {
    grid-template-columns: 1fr;
  }

  .push-delay-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 640px) {
  .content {
    padding: 14px;
  }

  .page-title {
    font-size: 24px;
  }

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

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .settings-inline-row,
  .settings-cloak-grid {
    grid-template-columns: 1fr;
  }

  .table {
    font-size: 13px;
  }

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

  .domain-inline-guide {
    align-items: flex-start;
  }

  .apps-toolbar {
    align-items: stretch;
  }

  .apps-search-wrap {
    max-width: none;
    flex-basis: 100%;
  }

  .apps-toolbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .apps-pagination {
    flex-direction: column;
    align-items: stretch;
  }

  .apps-pagination-controls {
    justify-content: space-between;
  }

  .phone-shell {
    width: min(100%, 340px);
  }

  .preview-frame {
    width: 100%;
  }
}
