.picart-site-header,
.picart-site-header * {
  box-sizing: border-box;
}

:root {
  --picart-page-max: 1240px;
  --picart-page-gutter: 48px;
  --picart-font:
    Inter,
    "Plus Jakarta Sans",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  --picart-ink: #0f172a;
  --picart-text: #344054;
  --picart-muted: #667085;
  --picart-blue: #2563eb;
  --picart-blue-soft: #eff6ff;
}

html {
  overflow-x: hidden;
}

body {
  max-width: 100%;
  margin: 0;
  font-family: var(--picart-font);
  overflow-x: hidden;
}

:where(.hero h1, .page-hero h1, .dashboard-hero h1, .dashboard-panel h2) {
  color: var(--picart-ink);
  font-weight: 900;
  letter-spacing: 0;
}

:where(.hero p, .page-hero p, .dashboard-panel p, .dashboard-hero p) {
  line-height: 1.65;
}

:where(button, .btn, .nav-btn, .login-link, .print-btn, .print-action, .ghost-action, .quiet-action) {
  font-weight: 850;
}

.auth-user-pill {
  max-width: 184px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: #174ec9;
  background: #eff6ff;
  font-size: 13px;
  font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.16);
}

.picart-site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 76px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.86);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.picart-header-shell {
  position: relative;
  width: min(var(--picart-page-max), calc(100% - var(--picart-page-gutter)));
  min-height: 76px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 260px;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
}

.picart-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
}

.picart-brand img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.picart-site-nav,
.picart-auth-actions {
  display: flex;
  align-items: center;
}

.picart-site-nav {
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.picart-site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  color: #475467;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.picart-site-nav a:hover,
.picart-site-nav a.active {
  color: #2563eb;
  background: #eff6ff;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.picart-site-nav a:hover {
  transform: translateY(-1px);
}

.picart-auth-actions {
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.picart-mobile-auth {
  display: none;
}

.login-link {
  color: #475467;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: #ffffff;
  background: #2563eb;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.picart-menu-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 15px;
  color: #0f172a;
  background: #f8fafc;
  box-shadow:
    inset 0 0 0 1px #e5e9f2,
    0 10px 24px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transform: translateY(-50%);
}

@media (min-width: 981px) {
  .picart-menu-toggle {
    display: none !important;
  }
}

.picart-menu-toggle span {
  width: 19px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.22s ease,
    opacity 0.18s ease;
}

.picart-menu-toggle .picart-menu-mark {
  width: auto;
  height: auto;
  display: block;
  background: transparent;
  color: transparent;
  font-size: 22px;
  line-height: 1;
}

.picart-menu-toggle .picart-menu-mark::before {
  content: "☰";
  color: #0f172a;
}

.picart-site-header.menu-open .picart-menu-toggle .picart-menu-mark::before {
  content: "×";
  font-size: 26px;
}

.picart-menu-toggle span:not(.picart-menu-mark) {
  display: none;
}

.picart-site-header.menu-open .picart-menu-toggle span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.picart-site-header.menu-open .picart-menu-toggle span:nth-child(3) {
  opacity: 0;
}

.picart-site-header.menu-open .picart-menu-toggle span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.cv-header .logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.cv-header .header-inner,
.invoice-header .header-inner {
  grid-template-columns: minmax(0, 1fr) auto;
}

.cv-header .step-nav {
  justify-content: flex-start;
}

.invoice-header .tool-nav {
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.invoice-header .tool-nav strong {
  font-size: 14px;
}

.invoice-header .tool-nav span {
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}

.auth-page {
  min-height: 100vh;
  padding: 0 18px 40px;
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  color: #0f172a;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
}

.auth-page .picart-site-header {
  margin: 0 -18px 40px;
}

.auth-page .auth-card {
  margin: 0 auto;
}

.auth-card {
  width: min(460px, 100%);
  padding: 30px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
}

.auth-card h1 {
  margin: 12px 0 8px;
  font-size: 34px;
  line-height: 1.08;
}

.auth-card p {
  margin: 0 0 22px;
  color: #667085;
  line-height: 1.6;
}

.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0f172a;
  font-weight: 900;
  text-decoration: none;
}

.auth-brand img {
  height: 44px;
  width: auto;
}

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

.auth-form label {
  color: #101828;
  font-size: 13px;
  font-weight: 850;
}

.auth-form input {
  width: 100%;
  min-height: 50px;
  margin-top: 7px;
  border: 1px solid #d7deea;
  border-radius: 13px;
  outline: none;
  padding: 13px 14px;
  background: #fbfdff;
  color: #0f172a;
  font: inherit;
}

.auth-form input:focus {
  border-color: #7898e8;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.09);
}

.auth-submit {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #174ec9);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
  font-weight: 900;
  cursor: pointer;
}

.auth-switch {
  margin-top: 18px !important;
  font-size: 14px;
}

.auth-switch a,
.auth-alert a {
  color: #2563eb;
  font-weight: 850;
}

.auth-alert {
  margin: 0 0 16px;
  padding: 13px 14px;
  border-radius: 14px;
  background: #fff1f3;
  color: #b42318;
  font-size: 14px;
  font-weight: 750;
}

.auth-alert.success {
  color: #176552;
  background: #e9f9f2;
}

.auth-dashboard {
  width: min(960px, 100%);
}

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

.dashboard-link {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: 20px;
  color: inherit;
  text-decoration: none;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #e5e9f2;
}

.dashboard-link strong {
  font-size: 20px;
}

.dashboard-link span {
  color: #2563eb;
  font-weight: 900;
}

.placeholder-panel {
  margin-top: 16px;
  padding: 22px;
  border-radius: 20px;
  color: #667085;
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px #e5e9f2;
}

.dashboard-body {
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.12), transparent 30%),
    radial-gradient(circle at 90% 14%, rgba(20, 150, 111, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 52%, #ffffff 100%);
}

.dashboard-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 252, 0.9)),
    #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(226, 232, 240, 0.72),
    0 28px 80px rgba(15, 23, 42, 0.1);
}

.dashboard-brand {
  margin-bottom: 24px;
}

.dashboard-eyebrow {
  margin: 0 0 8px !important;
  color: #2563eb !important;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dashboard-hero h1,
.dashboard-panel h2 {
  margin: 0;
  color: #0f172a;
  letter-spacing: 0;
}

.dashboard-hero h1 {
  max-width: 780px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.dashboard-hero p:not(.dashboard-eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  color: #667085;
  font-size: 18px;
  line-height: 1.65;
}

.account-badge {
  min-width: 260px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1px #e5e9f2,
    0 18px 42px rgba(15, 23, 42, 0.08);
}

.account-badge span {
  display: block;
  color: #667085;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-badge strong {
  display: block;
  overflow: hidden;
  margin-top: 6px;
  color: #0f172a;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-grid-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.dashboard-column {
  display: grid;
  gap: 22px;
}

.dashboard-panel {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(226, 232, 240, 0.78),
    0 18px 52px rgba(15, 23, 42, 0.08);
}

.panel-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.dashboard-panel h2 {
  font-size: 25px;
}

.panel-copy {
  max-width: 680px;
  margin: -4px 0 18px !important;
  color: #667085;
}

.local-save-pill,
.plan-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  color: #176552;
  background: #e9f9f2;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

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

.quick-card {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
  color: #0f172a;
  text-decoration: none;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff),
    #ffffff;
  box-shadow:
    inset 0 0 0 1px #e5e9f2,
    0 14px 34px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 0 0 1px rgba(37, 99, 235, 0.22),
    0 24px 58px rgba(15, 23, 42, 0.12);
}

.quick-card.primary {
  background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.quick-card.invoice {
  background: linear-gradient(135deg, #effdf6, #ffffff);
}

.quick-card.is-muted {
  opacity: 0.76;
}

.quick-card.draft-found {
  opacity: 1;
  background: linear-gradient(135deg, #f5f3ff, #ffffff);
}

.quick-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #174ec9);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.quick-card.invoice .quick-icon {
  background: linear-gradient(135deg, #14966f, #0f766e);
}

.quick-card.draft-card .quick-icon {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
}

.quick-card strong {
  font-size: 19px;
  line-height: 1.2;
}

.quick-card small {
  color: #667085;
  font-size: 13px;
  line-height: 1.55;
}

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

.document-card {
  min-height: 190px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow:
    inset 0 0 0 1px #e5e9f2,
    0 14px 34px rgba(15, 23, 42, 0.06);
}

.document-card span {
  color: #2563eb;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.document-card strong {
  display: block;
  margin-top: 8px;
  color: #0f172a;
  font-size: 17px;
}

.doc-lines {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.doc-lines i {
  height: 10px;
  border-radius: 999px;
  background: #dbe3ef;
}

.doc-lines i:nth-child(2) {
  width: 76%;
}

.doc-lines i:nth-child(3) {
  width: 54%;
}

.invoice-doc-card .doc-lines i {
  background: #cdeedf;
}

.export-doc-card .doc-lines i {
  background: #dcd7ff;
}

.account-panel h2,
.upgrade-panel h2 {
  font-size: 23px;
}

.account-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.account-list div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 16px;
  background: #f8fafc;
}

.account-list dt {
  color: #667085;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.account-list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: #0f172a;
  font-weight: 850;
}

.upgrade-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(239, 246, 255, 0.96), rgba(255, 255, 255, 0.94)),
    #ffffff;
}

.upgrade-orb {
  position: absolute;
  right: -42px;
  top: -42px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 66%);
}

.upgrade-panel p:not(.dashboard-eyebrow) {
  margin: 12px 0 0;
  color: #667085;
  line-height: 1.65;
}

.export-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(12px);
}

.export-auth-modal.active {
  display: grid;
}

.restore-notice {
  position: fixed;
  left: 50%;
  top: 88px;
  z-index: 900;
  width: min(520px, calc(100% - 28px));
  transform: translateX(-50%);
  display: none;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.restore-notice.active {
  display: flex;
}

.restore-notice strong {
  display: block;
  color: #0f172a;
}

.restore-notice span {
  display: block;
  margin-top: 2px;
  color: #667085;
  font-size: 13px;
}

.restore-actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.restore-actions button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  font-weight: 900;
  cursor: pointer;
}

.restore-continue {
  color: #ffffff;
  background: #2563eb;
}

.restore-dismiss {
  color: #667085;
  background: #f2f4f7;
}

.export-auth-dialog {
  width: min(440px, 100%);
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.24);
}

.export-auth-dialog h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}

.export-auth-dialog p {
  margin: 12px 0 22px;
  color: #667085;
  line-height: 1.65;
}

.export-auth-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.export-auth-actions a,
.export-auth-actions button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.export-auth-primary {
  color: #ffffff;
  background: #2563eb;
}

.export-auth-secondary {
  color: #2563eb;
  background: #eff6ff;
}

.export-auth-close {
  color: #667085;
  background: #f2f4f7;
}

@media (max-width: 980px) {
  :root {
    --picart-page-gutter: 24px;
  }

  .picart-site-header {
    min-height: 88px;
  }

  .picart-site-header::after {
    content: "☰";
    position: absolute;
    right: 24px;
    top: 21px;
    z-index: 1;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #0f172a;
    background: #f8fafc;
    box-shadow:
      inset 0 0 0 1px #e5e9f2,
      0 10px 24px rgba(15, 23, 42, 0.06);
    font-size: 22px;
    line-height: 1;
    pointer-events: none;
  }

  .picart-site-header.menu-open::after {
    content: "×";
    font-size: 28px;
  }

  .picart-header-shell {
    min-height: 88px;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 10px;
  }

  .picart-brand {
    grid-column: 2;
    justify-self: center;
  }

  .picart-brand::after {
    content: "☰";
    position: fixed;
    right: 24px;
    top: 21px;
    z-index: 200;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #0f172a;
    background: #f8fafc;
    box-shadow:
      inset 0 0 0 1px #e5e9f2,
      0 10px 24px rgba(15, 23, 42, 0.06);
    font-size: 22px;
    line-height: 1;
    pointer-events: none;
  }

  .picart-site-header.menu-open .picart-brand::after {
    content: "×";
    font-size: 28px;
  }

  .picart-brand img {
    height: 64px;
  }

  .picart-desktop-auth {
    display: none;
  }

  .picart-menu-toggle {
    grid-column: 3;
    display: inline-flex !important;
    justify-self: end;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto;
    background: transparent;
    box-shadow: none;
  }

  .picart-site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    z-index: 90;
    display: grid;
    gap: 8px;
    justify-content: stretch;
    padding: 14px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top center;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .picart-site-header.menu-open .picart-site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .picart-site-nav a {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    padding: 0 14px;
    font-size: 14px;
  }

  .picart-mobile-auth {
    display: grid;
    gap: 10px;
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid #e5e9f2;
  }

  .picart-mobile-auth .login-link,
  .picart-mobile-auth .nav-btn,
  .picart-mobile-auth .auth-user-pill {
    width: 100%;
    max-width: none;
    justify-content: center;
  }

  .picart-mobile-auth .login-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #f8fafc;
  }

  .restore-notice {
    top: 104px;
  }
}

@media (max-width: 620px) {
  .picart-site-header {
    min-height: 84px;
  }

  .picart-header-shell {
    min-height: 84px;
  }

  .picart-brand img {
    height: 60px;
  }

  .auth-card {
    padding: 24px;
  }

  .auth-card h1 {
    font-size: 30px;
  }

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

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

  .dashboard-hero,
  .dashboard-grid-main,
  .quick-actions,
  .document-skeletons {
    grid-template-columns: 1fr;
  }

  .dashboard-hero {
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
  }

  .dashboard-brand {
    margin-bottom: 18px;
  }

  .dashboard-hero h1 {
    font-size: 34px;
  }

  .dashboard-hero p:not(.dashboard-eyebrow) {
    font-size: 15px;
  }

  .account-badge {
    min-width: 0;
    width: 100%;
  }

  .dashboard-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .panel-title-row {
    flex-direction: column;
    gap: 10px;
  }

  .quick-card {
    min-height: 150px;
  }

  .export-auth-actions a,
  .export-auth-actions button {
    width: 100%;
  }

  .restore-notice {
    top: 120px;
    align-items: stretch;
    flex-direction: column;
  }

  .restore-actions button {
    flex: 1;
  }
}
