:root {
  color-scheme: light;
  --bg: #f5f7fb;
  --panel: #ffffff;
  --text: #1c2430;
  --muted: #6b7280;
  --line: #d9dee8;
  --primary: #1457d9;
  --primary-dark: #0d3f9f;
  --accent: #11b976;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 32px auto;
}

.quick-shell {
  width: min(1040px, calc(100vw - 28px));
  margin: 28px auto 48px;
}

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

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

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 18px;
}

p {
  color: var(--muted);
  margin-top: 6px;
}

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

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(30, 41, 59, 0.06);
}

.history-panel {
  grid-column: 1 / -1;
}

.admin-panel {
  grid-column: 1 / -1;
}

.batch-panel {
  grid-column: 1;
}

.result-panel {
  grid-column: 2;
  grid-row: 1 / span 2;
}

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

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

.form {
  display: grid;
  gap: 14px;
}

.form.compact {
  max-width: 360px;
}

.partner-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  margin-bottom: 16px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.stat-item {
  min-height: 70px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  background: #fbfcff;
}

.stat-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.stat-item strong {
  display: block;
  color: var(--text);
  font-size: 20px;
  line-height: 1.1;
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding-top: 20px;
}

.checkbox-label input {
  width: 16px;
  height: 16px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-size: 15px;
  background: white;
}

input,
select {
  height: 42px;
  padding: 0 11px;
}

textarea {
  min-height: 170px;
  padding: 11px;
  line-height: 1.6;
  resize: vertical;
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.four {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

button {
  height: 42px;
  border: 0;
  border-radius: 6px;
  background: var(--primary);
  color: white;
  font-weight: 700;
  cursor: pointer;
}

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

button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

button.ghost {
  width: auto;
  min-width: 72px;
  padding: 0 14px;
  background: white;
  color: var(--primary);
  border: 1px solid var(--line);
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.quick-login {
  max-width: 420px;
}

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

.quick-card,
.quick-result-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(30, 41, 59, 0.08);
}

.quick-entry-form {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.entry-row {
  min-height: 64px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--text);
}

.entry-row > span {
  font-weight: 700;
}

.entry-row input,
.entry-row select {
  border-color: transparent;
  background: transparent;
  font-size: 16px;
}

.segmented-control {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(76px, auto);
  gap: 10px;
  justify-content: start;
}

.segmented-control label {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: #fff;
  font-size: 15px;
  font-weight: 700;
}

.segmented-control input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.date-entry {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

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

.calendar-tabs label {
  min-width: 110px;
}

.inline-check {
  width: auto;
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--muted);
}

.inline-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

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

.date-grid label {
  text-align: center;
  font-size: 14px;
}

.date-grid input {
  height: 48px;
  text-align: center;
  font-size: 18px;
  border-color: transparent transparent var(--line);
  border-radius: 0;
  background: transparent;
}

.report {
  min-height: 650px;
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fbfcff;
  line-height: 1.75;
  font-size: 15px;
}

.quick-report {
  min-height: 560px;
}

.report-image-preview {
  display: block;
  width: min(100%, 430px);
  height: auto;
  max-height: 520px;
  object-fit: contain;
  margin: 0 auto 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef2f5;
}

.feedback-panel {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcff;
}

.feedback-panel span {
  color: var(--muted);
  margin-right: auto;
}

.full-placeholder-button {
  margin-top: 12px;
}

.compact-check {
  padding-top: 0;
}

.batch-result {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.batch-report-button {
  justify-self: start;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history,
.partner-list,
.feedback-list {
  display: grid;
  gap: 10px;
}

.history-item,
.partner-item,
.feedback-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcff;
}

.history-item strong,
.partner-item strong,
.feedback-item strong {
  display: block;
  margin-bottom: 4px;
}

.history-item span,
.partner-item span,
.feedback-item span {
  color: var(--muted);
  font-size: 13px;
}

.feedback-item small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.panel-subsection {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.compact-title {
  margin-bottom: 10px;
}

.hidden {
  display: none !important;
}

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

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

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

  .batch-panel,
  .result-panel {
    grid-column: 1;
    grid-row: auto;
  }

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

  .date-grid {
    grid-template-columns: repeat(5, minmax(52px, 1fr));
  }

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

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

@media (max-width: 560px) {
  .topbar,
  .quick-topbar,
  .panel-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-form,
  .stat-grid,
  .two,
  .four {
    grid-template-columns: 1fr;
  }

  .date-entry-header {
    align-items: stretch;
    flex-direction: column;
  }

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

  .date-grid input {
    padding: 0 4px;
    font-size: 16px;
  }

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

  .segmented-control {
    grid-auto-columns: minmax(68px, auto);
  }

  .history-item,
  .partner-item {
    grid-template-columns: 1fr;
  }
}

body.quick-page {
  min-height: 100vh;
  min-height: 100svh;
  background:
    linear-gradient(rgba(246, 241, 231, 0.5), rgba(246, 241, 231, 0.18)),
    url("/personality_report_bg.png") center top / cover no-repeat fixed;
  color: #202936;
}

body.quick-page:not(.is-authenticated):not(.is-loading):not(.is-result) {
  background: #f4eee3;
}

.quick-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: rgba(248, 244, 235, 0.28);
}

body.quick-page:not(.is-authenticated):not(.is-loading):not(.is-result)::before {
  background:
    linear-gradient(rgba(246, 241, 231, 0.5), rgba(246, 241, 231, 0.18)),
    url("/login-page-premium-1080x1920.png") center top / min(100vw, 430px) 100svh no-repeat;
  filter: blur(10px);
  opacity: 0.48;
  transform: scale(1.04);
}

.quick-shell {
  position: relative;
  width: min(100vw, 430px);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: 52px 28px 42px;
}

.quick-hero {
  position: relative;
  min-height: 184px;
  padding-top: 104px;
  text-align: center;
}

.quick-page:not(.is-authenticated):not(.is-loading):not(.is-result) .quick-shell {
  padding: 46px 49px 42px;
}

.quick-page:not(.is-authenticated):not(.is-loading):not(.is-result) .quick-hero {
  min-height: 237px;
  padding-top: 139px;
}

.quick-page:not(.is-authenticated):not(.is-loading):not(.is-result) .quick-hero h1 {
  font-size: 26px;
}

.quick-page:not(.is-authenticated):not(.is-loading):not(.is-result) .quick-hero p {
  margin-top: 10px;
  font-size: 14px;
}

.quick-hero h1 {
  color: #202a36;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.18;
}

.quick-hero p {
  margin-top: 9px;
  color: #6d7480;
  font-size: 14px;
  line-height: 1.5;
}

.quick-divider {
  position: relative;
  width: 126px;
  height: 1px;
  margin: 22px auto 0;
  background: #b98938;
}

.quick-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b98938;
  transform: translate(-50%, -50%);
}

.quick-close {
  position: absolute;
  top: 32px;
  left: 0;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1f2a36;
  font-size: 42px;
  font-weight: 300;
  line-height: 30px;
}

.quick-close:hover {
  background: transparent;
  color: #1f2a36;
}

.quick-menu-dot {
  position: absolute;
  top: 35px;
  right: 3px;
  color: #1f2a36;
  font-size: 26px;
  letter-spacing: 2px;
  line-height: 1;
}

.quick-login {
  width: 100%;
  margin-top: 6px;
  padding: 24px;
  border-color: rgba(180, 133, 49, 0.48);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.quick-page:not(.is-authenticated):not(.is-loading):not(.is-result) .quick-login {
  margin-top: 0;
  padding: 25px 23px 22px;
  border-color: rgba(180, 133, 49, 0.78);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 11px 24px rgba(49, 66, 78, 0.09);
}

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

.quick-login-head h2 {
  margin: 0;
  color: #202936;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
}

.quick-login-head span {
  display: inline-flex;
  align-items: center;
  height: 23px;
  padding: 0 10px;
  border: 1px solid rgba(181, 137, 64, 0.78);
  border-radius: 999px;
  color: #9a6b25;
  font-size: 11px;
  line-height: 1;
}

.quick-page:not(.is-authenticated):not(.is-loading):not(.is-result) .quick-login .form.compact {
  gap: 18px;
}

.quick-page:not(.is-authenticated):not(.is-loading):not(.is-result) .quick-login label {
  gap: 8px;
  color: #69717c;
  font-size: 15px;
  font-weight: 700;
}

.quick-page:not(.is-authenticated):not(.is-loading):not(.is-result) .quick-login input {
  height: 42px;
  padding: 0 16px 0 38px;
  border: 1px solid #cfd8dd;
  border-radius: 9px;
  background: rgba(250, 253, 252, 0.82);
  color: #202936;
  font-size: 18px;
  box-shadow: none;
}

.quick-page:not(.is-authenticated):not(.is-loading):not(.is-result) .quick-login label {
  position: relative;
}

.quick-page:not(.is-authenticated):not(.is-loading):not(.is-result) .quick-login label::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 39px;
  width: 10px;
  height: 10px;
  border: 1px solid #b98938;
  border-radius: 50%;
}

.quick-page:not(.is-authenticated):not(.is-loading):not(.is-result) .quick-login button[type="submit"] {
  height: 43px;
  margin-top: 6px;
  border: 1px solid #b98938;
  border-radius: 10px;
  background: #217f73;
  color: #fff8ed;
  font-size: 18px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 235, 177, 0.5);
}

.quick-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.quick-card,
.quick-result-card {
  width: 100%;
  border: 1px solid rgba(181, 137, 64, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.quick-card {
  min-height: 565px;
  padding: 31px 21px 24px;
}

.quick-result-card {
  padding: 18px 14px 20px;
}

.quick-entry-form {
  border-top: 0;
}

.quick-entry-form .entry-row {
  min-height: 56px;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 0;
  border-bottom: 1px solid #d8cfc1;
  color: #202936;
}

.quick-entry-form .entry-row > span {
  font-size: 17px;
  font-weight: 800;
}

.quick-entry-form .entry-row input,
.quick-entry-form .entry-row select {
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #1f2935;
  background: transparent;
  font-size: 17px;
}

.quick-entry-form .entry-row input::placeholder {
  color: #9ba2ad;
}

.quick-entry-form .segmented-control {
  display: grid;
  grid-template-columns: 86px 86px;
  gap: 12px;
}

.quick-entry-form .segmented-control label {
  min-height: 32px;
  border-color: #c8bfb3;
  border-radius: 9px;
  color: #25313d;
  background: rgba(255, 255, 255, 0.54);
  font-size: 15px;
}

.quick-entry-form .segmented-control input,
.quick-entry-form .inline-check input {
  width: 16px;
  height: 16px;
  accent-color: #238f86;
}

.quick-entry-form .date-entry {
  padding: 17px 0 16px;
  border-bottom: 1px solid #d8cfc1;
}

.quick-entry-form .date-entry-header {
  display: grid;
  gap: 14px;
  margin-bottom: 13px;
}

.quick-entry-form .calendar-tabs {
  grid-template-columns: 116px 116px;
}

.quick-entry-form .calendar-tabs label {
  min-width: 0;
}

.quick-entry-form .inline-check {
  display: inline-flex;
  width: max-content;
  color: #69717c;
  font-size: 15px;
}

.quick-entry-form .date-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid #d1c7b8;
}

.quick-entry-form .date-grid label {
  position: relative;
  gap: 6px;
  color: #69717c;
  font-size: 11px;
  text-align: center;
}

.quick-entry-form .date-grid label + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  bottom: 8px;
  width: 1px;
  background: rgba(200, 191, 179, 0.72);
}

.quick-entry-form .date-grid input {
  height: 41px;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #202936;
  font-size: 18px;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}

.quick-entry-form .date-grid input::-webkit-outer-spin-button,
.quick-entry-form .date-grid input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.quick-entry-form button[type="submit"] {
  height: 48px;
  margin-top: 26px;
  border: 1px solid #b98938;
  border-radius: 10px;
  background: rgba(250, 247, 240, 0.86);
  color: #9a6b25;
  font-size: 17px;
  font-weight: 500;
}

.quick-entry-form button[type="submit"]:hover {
  background: rgba(245, 237, 221, 0.96);
}

.quick-footnote {
  margin-top: 18px;
  color: #6f7782;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.quick-page.is-authenticated .quick-footnote {
  display: block;
  min-height: 20px;
  padding: 0 8px;
  color: #6f7782;
  font-size: 13px;
}

.quick-result-card .panel-title {
  flex-direction: row;
  align-items: center;
  margin-bottom: 12px;
}

.quick-result-card .panel-title h2 {
  font-size: 18px;
}

.quick-result-card .actions {
  gap: 6px;
}

.quick-result-card button.ghost,
.quick-result-card .ghost {
  min-width: 58px;
  height: 34px;
  padding: 0 10px;
  border-color: #d8cfc1;
  border-radius: 8px;
  color: #8b6428;
  background: rgba(255, 255, 255, 0.72);
}

.quick-result-card .report-image-preview {
  width: 100%;
  max-height: none;
  margin-bottom: 12px;
  border-color: rgba(181, 137, 64, 0.45);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.54);
}

.quick-result-card .feedback-panel {
  margin-bottom: 10px;
  border-color: #d8cfc1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.62);
}

.quick-report-details {
  margin-top: 8px;
  color: #69717c;
  font-size: 14px;
}

.quick-report-details summary {
  cursor: pointer;
}

.quick-report {
  min-height: 180px;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.quick-loading-panel {
  min-height: 500px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  border: 1px solid rgba(181, 137, 64, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.quick-loading-panel h2 {
  color: #202936;
  font-size: 22px;
}

.quick-loading-panel p {
  margin: 0;
  color: #6f7782;
  font-size: 14px;
}

.quick-loader {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(185, 137, 56, 0.22);
  border-top-color: #b98938;
  border-right-color: #238f86;
  animation: quick-spin 1s linear infinite;
}

@keyframes quick-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 720px) {
  body.quick-page {
    background-size: min(100vw, 520px) auto;
    background-color: #f4eee3;
  }

  .quick-shell {
    width: 430px;
  }
}

.quick-page.is-loading .quick-hero,
.quick-page.is-loading .quick-card,
.quick-page.is-result .quick-hero,
.quick-page.is-result .quick-card {
  display: none;
}

.quick-page.is-loading .quick-shell,
.quick-page.is-result .quick-shell {
  width: min(100vw, 430px);
  min-height: 100svh;
  padding: 0;
}

.quick-page.is-loading .quick-layout,
.quick-page.is-result .quick-layout {
  display: block;
}

.quick-page.is-loading .quick-loading-panel {
  position: relative;
  width: 100%;
  min-height: 100svh;
  border: 0;
  border-radius: 0;
  background: url("/optimized-loading-no-ring-1080x1920.png") center center / cover no-repeat;
}

.quick-page.is-loading .quick-loading-panel h2,
.quick-page.is-loading .quick-loading-panel p {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.quick-page.is-loading .quick-loader {
  position: absolute;
  left: 50%;
  top: 41.2%;
  width: 58px;
  height: 58px;
  margin-left: -29px;
  margin-top: -29px;
  border-width: 4px;
  border-style: solid;
  border-color: transparent;
  border-top-color: #238f86;
  border-right-color: #b4872e;
  border-bottom-color: rgba(185, 137, 56, 0.34);
  filter: drop-shadow(0 2px 6px rgba(185, 137, 56, 0.2));
}

.quick-page.is-result {
  overflow: hidden;
}

.quick-page.is-result .quick-result-card {
  position: fixed;
  inset: 0;
  z-index: 5;
  width: min(100vw, 430px);
  height: 100svh;
  margin: 0 auto;
  padding: 12px 10px 118px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(246, 241, 231, 0.34), rgba(246, 241, 231, 0.16)),
    url("/personality_report_bg.png") center top / cover no-repeat;
  overflow: hidden;
}

.quick-page.is-result .quick-result-card .panel-title {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 8;
  width: min(100vw, 430px);
  aspect-ratio: 1279 / 327;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: url("/result-action-bar.png") center bottom / 100% 100% no-repeat;
  box-shadow: none;
  transform: translateX(-50%);
}

.quick-page.is-result .quick-result-card.has-liked .panel-title {
  background-image: url("/result-action-bar-liked.png");
}

.quick-page.is-result .quick-result-card .panel-title h2 {
  display: none;
}

.quick-page.is-result .quick-result-card .actions {
  position: absolute;
  left: 4.9%;
  right: 4.7%;
  top: 15.3%;
  bottom: 20.5%;
  display: grid;
  grid-template-columns: 14.1% 38.2% 38.2%;
  gap: 3.6%;
  width: auto;
  padding: 0;
}

.quick-page.is-result .quick-result-card button.ghost {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: transparent;
  box-shadow: none;
}

.quick-page.is-result .quick-result-card button.ghost:disabled {
  opacity: 1;
}

.quick-page.is-result .quick-result-card button.ghost:active {
  background: rgba(255, 255, 255, 0.08);
}

.quick-page.is-result .quick-result-card .report-image-preview {
  width: 100%;
  height: calc(100svh - 112px);
  margin: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  object-fit: contain;
}

.quick-page.is-result .quick-report-details,
.quick-page.is-result .full-placeholder-button {
  display: none;
}
