:root {
  --red: #e82127;
  --red-dark: #b8141a;
  --red-soft: #fbe9ea;
  --black: #101112;
  --near-black: #1b1d1f;
  --ink: #202225;
  --muted: #71757a;
  --line: #e4e6e8;
  --line-dark: #303235;
  --paper: #ffffff;
  --canvas: #f3f4f6;
  --soft: #f7f8f9;
  --shadow: 0 12px 32px rgba(16, 17, 18, 0.07);
  --radius: 8px;
  --sidebar-width: 238px;
  font-family:
    "Noto Sans SC", "Microsoft YaHei", "PingFang SC", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--canvas);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--canvas);
}

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

button {
  color: inherit;
}

button,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}

.app-shell {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  width: var(--sidebar-width);
  height: 100vh;
  padding: 22px 16px 18px;
  overflow-y: auto;
  color: #ffffff;
  background: var(--black);
  border-right: 1px solid #252729;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 3px 5px 20px;
  border-bottom: 1px solid #2a2c2e;
}

.brand-mark {
  width: 88px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
}

.brand-title {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.brand-subtitle {
  margin: 4px 0 0;
  font-size: 11px;
  color: #9da0a3;
}

.nav-list {
  display: grid;
  gap: 6px;
  margin-top: 22px;
}

.nav-item {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  text-align: left;
  color: #c9cbce;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition:
    color 150ms ease,
    background-color 150ms ease;
}

.nav-item::before {
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: 0;
  width: 3px;
  content: "";
  background: transparent;
  border-radius: 0 3px 3px 0;
}

.nav-item:hover {
  color: #ffffff;
  background: #1b1d1f;
}

.nav-item:focus-visible,
.button:focus-visible,
.icon-button:focus-visible,
.sidebar-action:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.nav-item.is-active {
  color: #ffffff;
  background: #202224;
}

.nav-item.is-active::before {
  background: var(--red);
}

.nav-item span {
  overflow: hidden;
  font-size: 13px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-footer {
  display: grid;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
}

.storage-status {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  background: #181a1c;
  border: 1px solid #292c2f;
  border-radius: var(--radius);
}

.status-dot {
  width: 7px;
  height: 7px;
  margin-top: 5px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232, 33, 39, 0.12);
}

.status-title,
.status-copy {
  margin: 0;
}

.status-title {
  font-size: 11px;
  font-weight: 700;
}

.status-copy {
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.45;
  color: #8f9397;
}

.sidebar-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 40px;
  color: #d8dadd;
  background: transparent;
  border: 1px solid #343739;
  border-radius: 6px;
  cursor: pointer;
}

.sidebar-action:hover {
  color: #ffffff;
  border-color: #55595c;
}

.main-area {
  min-width: 0;
}

.topbar {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 116px;
  padding: 22px 32px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.page-heading {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 6px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.page-heading h1 {
  margin: 0;
  overflow: hidden;
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-heading p:last-child {
  margin: 7px 0 0;
  overflow: hidden;
  font-size: 12px;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.today-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 650;
  color: #4e5256;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.today-chip svg {
  color: var(--red);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition:
    transform 120ms ease,
    background-color 150ms ease,
    border-color 150ms ease;
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.button-secondary:hover {
  background: var(--soft);
  border-color: #cfd2d5;
}

.button-dark {
  color: #ffffff;
  background: var(--black);
  border-color: var(--black);
}

.button-dark:hover {
  background: #292c2f;
  border-color: #292c2f;
}

.button-quiet {
  min-height: 34px;
  padding: 0 11px;
  color: #55595d;
  background: transparent;
  border-color: var(--line);
}

.button-quiet:hover {
  color: var(--ink);
  background: var(--soft);
}

.button svg {
  width: 16px;
  height: 16px;
}

.view-container {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 28px 32px 46px;
}

.section {
  margin-bottom: 26px;
}

.section:last-child {
  margin-bottom: 0;
}

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

.section-title {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
}

.section-copy {
  margin: 5px 0 0;
  font-size: 11px;
  color: var(--muted);
}

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

.metric-card {
  position: relative;
  min-height: 126px;
  padding: 18px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.metric-card:hover::after {
  transform: scaleX(1);
}

.metric-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

.metric-label svg {
  width: 15px;
  height: 15px;
  color: var(--red);
}

.metric-value {
  margin: 15px 0 0;
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
}

.metric-note {
  margin: 9px 0 0;
  font-size: 10px;
  color: #92969a;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  gap: 16px;
}

.panel {
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
}

.panel-title {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
}

.panel-copy {
  margin: 4px 0 0;
  font-size: 10px;
  color: var(--muted);
}

.panel-body {
  padding: 17px;
}

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

.quick-action {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px;
  text-align: left;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  transition:
    background-color 150ms ease,
    border-color 150ms ease;
}

.quick-action:hover {
  background: #ffffff;
  border-color: #c9cccf;
}

.quick-action-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: #ffffff;
  background: var(--black);
  border-radius: 5px;
}

.quick-action:nth-child(even) .quick-action-icon {
  background: var(--red);
}

.quick-action strong {
  display: block;
  overflow: hidden;
  font-size: 11.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-action small {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  font-size: 9.5px;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-action > svg {
  width: 14px;
  height: 14px;
  color: #9b9fa3;
}

.activity-list {
  display: grid;
  gap: 0;
}

.activity-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 51px;
  border-bottom: 1px solid var(--line);
}

.activity-row:last-child {
  border-bottom: 0;
}

.activity-date {
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
}

.activity-title {
  overflow: hidden;
  font-size: 11.5px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-meta {
  margin-top: 4px;
  overflow: hidden;
  font-size: 9.5px;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-value {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
}

.week-chart {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 9px;
  align-items: end;
  min-height: 148px;
  padding-top: 10px;
}

.week-column {
  display: grid;
  grid-template-rows: 96px auto auto;
  gap: 7px;
  align-items: end;
  min-width: 0;
  text-align: center;
}

.week-bar-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 96px;
  background: var(--soft);
  border-radius: 5px;
}

.week-bar {
  width: 64%;
  min-height: 3px;
  background: var(--red);
  border-radius: 4px 4px 0 0;
  transition: height 220ms ease;
}

.week-label {
  font-size: 9px;
  color: var(--muted);
}

.week-value {
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

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

.toolbar-left,
.toolbar-right {
  display: flex;
  align-items: center;
  gap: 9px;
}

.search-field,
.filter-field {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 11px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.search-field {
  width: min(290px, 36vw);
}

.search-field svg,
.filter-field svg {
  width: 15px;
  height: 15px;
  color: #a0a4a8;
}

.search-field input,
.filter-field input {
  width: 100%;
  min-width: 0;
  padding: 0;
  font-size: 11px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.filter-field input {
  width: 128px;
}

.module-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.module-stat {
  min-height: 76px;
  padding: 13px 15px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.module-stat span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
}

.module-stat strong {
  display: block;
  margin-top: 8px;
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.data-table {
  width: 100%;
  min-width: 950px;
  border-collapse: collapse;
}

.data-table th {
  height: 42px;
  padding: 0 12px;
  font-size: 10px;
  font-weight: 750;
  color: #ffffff;
  text-align: left;
  white-space: nowrap;
  background: var(--black);
  border-right: 1px solid var(--line-dark);
}

.data-table th:last-child {
  border-right: 0;
}

.data-table td {
  min-height: 52px;
  padding: 11px 12px;
  font-size: 11px;
  line-height: 1.45;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
}

.data-table tbody tr:hover {
  background: #fafafa;
}

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

.cell-primary {
  font-weight: 700;
  color: var(--black);
}

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

.cell-date {
  font-family: Arial, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  white-space: nowrap;
}

.cell-clamp {
  display: -webkit-box;
  max-width: 260px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.row-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.icon-button {
  display: inline-grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: #6f7377;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
}

.icon-button:hover {
  color: var(--black);
  background: #ffffff;
  border-color: var(--line);
}

.icon-button.danger:hover {
  color: var(--red);
  border-color: #f0b5b8;
}

.icon-button svg {
  width: 15px;
  height: 15px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 8px;
  font-size: 9.5px;
  font-weight: 750;
  white-space: nowrap;
  color: #4d5155;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 99px;
}

.status-pill.is-positive {
  color: var(--red-dark);
  background: var(--red-soft);
  border-color: #f1c5c7;
}

.progress {
  display: grid;
  grid-template-columns: 44px minmax(72px, 1fr);
  gap: 8px;
  align-items: center;
  min-width: 132px;
}

.progress-value {
  font-family: Arial, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
}

.progress-track {
  height: 5px;
  overflow: hidden;
  background: #e9eaec;
  border-radius: 99px;
}

.progress-bar {
  height: 100%;
  background: var(--red);
  border-radius: inherit;
}

.empty-state {
  display: grid;
  justify-items: center;
  min-height: 300px;
  padding: 52px 24px;
  text-align: center;
  background: #ffffff;
  border: 1px dashed #cfd2d5;
  border-radius: var(--radius);
}

.empty-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 50%;
}

.empty-icon svg {
  width: 22px;
  height: 22px;
}

.empty-state h3 {
  margin: 17px 0 0;
  font-size: 14px;
}

.empty-state p {
  max-width: 390px;
  margin: 8px 0 18px;
  font-size: 11px;
  line-height: 1.65;
  color: var(--muted);
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: 16px;
}

.review-side,
.review-main {
  min-width: 0;
}

.date-picker-block {
  display: grid;
  gap: 9px;
  padding-bottom: 17px;
  margin-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.date-picker-block label,
.form-field label {
  font-size: 10px;
  font-weight: 750;
  color: #5e6266;
}

.date-picker-block input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.date-picker-block input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232, 33, 39, 0.08);
}

.day-summary {
  display: grid;
  gap: 10px;
}

.day-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-height: 47px;
  padding: 0 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.day-summary-row span {
  font-size: 10.5px;
  color: var(--muted);
}

.day-summary-row strong {
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.review-form {
  display: grid;
  gap: 15px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.form-field textarea {
  min-height: 112px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232, 33, 39, 0.08);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  padding-top: 4px;
}

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(13, 14, 15, 0.64);
  backdrop-filter: blur(3px);
}

.modal {
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.modal-header {
  position: sticky;
  z-index: 1;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 0 20px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.modal-header h2 {
  margin: 0;
  font-size: 17px;
}

.modal-header p {
  margin: 4px 0 0;
  font-size: 10px;
  color: var(--muted);
}

.modal-body {
  padding: 20px;
}

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

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

.toast-stack {
  position: fixed;
  z-index: 150;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 9px;
  pointer-events: none;
}

.toast {
  min-width: 240px;
  max-width: 360px;
  padding: 12px 14px;
  font-size: 11px;
  line-height: 1.45;
  color: #ffffff;
  background: var(--black);
  border-left: 3px solid var(--red);
  border-radius: 5px;
  box-shadow: var(--shadow);
  animation: toast-in 160ms ease both;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .overview-grid,
  .review-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .app-shell {
    display: block;
  }

  .sidebar {
    position: static;
    width: 100%;
    height: auto;
    padding: 14px 15px 12px;
    border-right: 0;
    border-bottom: 1px solid #252729;
  }

  .brand {
    min-height: 52px;
    padding: 0 2px 12px;
  }

  .brand-mark {
    width: 78px;
    height: 35px;
  }

  .nav-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    margin-top: 11px;
  }

  .nav-item {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    min-height: 54px;
    padding: 7px 4px;
    text-align: center;
  }

  .nav-item::before {
    top: auto;
    right: 10px;
    bottom: 0;
    left: 10px;
    width: auto;
    height: 2px;
  }

  .nav-item span {
    font-size: 9.5px;
  }

  .sidebar-footer {
    display: none;
  }

  .topbar {
    position: static;
    align-items: flex-start;
    min-height: 0;
    padding: 18px 18px 16px;
  }

  .topbar-actions {
    flex-direction: column-reverse;
    align-items: flex-end;
  }

  .today-chip {
    min-height: 32px;
    padding: 0 10px;
  }

  .today-chip svg {
    display: none;
  }

  .view-container {
    padding: 18px 18px 36px;
  }

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

  .toolbar-left,
  .toolbar-right {
    width: 100%;
  }

  .search-field {
    width: 100%;
  }

  .module-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar {
    display: grid;
  }

  .topbar-actions {
    align-items: stretch;
  }

  .today-chip {
    justify-content: center;
  }

  .button-primary {
    width: 100%;
  }

  .metrics-grid,
  .quick-actions {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: 112px;
  }

  .activity-row {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .activity-value {
    display: none;
  }

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

  .form-field.is-full {
    grid-column: auto;
  }

  .modal-backdrop {
    padding: 0;
  }

  .modal {
    width: 100%;
    max-height: 100vh;
    min-height: 100vh;
    border-radius: 0;
  }
}
