:root {
  color-scheme: light;
  --bg: #f6f7f8;
  --surface: #ffffff;
  --surface-2: #f0f3f2;
  --line: #d8dddc;
  --text: #151819;
  --muted: #66706d;
  --accent: #d63d2e;
  --accent-strong: #a92a20;
  --teal: #087f72;
  --amber: #9a6500;
  --shadow: 0 14px 40px rgba(21, 24, 25, 0.08);
  font-family:
    "Inter", "Yu Gothic UI", "Hiragino Kaku Gothic ProN", Meiryo, system-ui,
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
}

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

[hidden] {
  display: none !important;
}

.app-shell {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 12px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  font-size: 16px;
  letter-spacing: 0;
}

.status-pill {
  min-width: 110px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.status-pill[data-tone="ok"] {
  border-color: rgba(8, 127, 114, 0.28);
  background: rgba(8, 127, 114, 0.1);
  color: var(--teal);
}

.status-pill[data-tone="work"] {
  border-color: rgba(214, 61, 46, 0.26);
  background: rgba(214, 61, 46, 0.08);
  color: var(--accent);
}

.status-pill[data-tone="warn"] {
  border-color: rgba(154, 101, 0, 0.28);
  background: #fff8e8;
  color: var(--amber);
}

.workspace {
  display: grid;
  gap: 12px;
  padding: 12px 10px 28px;
}

.control-panel,
.video-gallery-panel,
.detail-panel,
.candidate-column {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: none;
}

.control-panel {
  padding: 12px;
}

.url-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.primary-action-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.secondary-actions button {
  flex: 1 1 128px;
}

input,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  background: #fff;
  color: var(--text);
}

textarea {
  width: 100%;
  min-height: 116px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  background: #fff;
  color: var(--text);
  line-height: 1.5;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(8, 127, 114, 0.16);
}

.textarea-label {
  margin-top: 14px;
}

button {
  min-height: 44px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
}

button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.primary-button {
  background: var(--accent);
  color: #fff;
}

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

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

.primary-button.alt:hover {
  background: #06665d;
}

.primary-button.pilot {
  position: relative;
  background: #151819;
}

.primary-button.pilot:hover {
  background: #303637;
}

.primary-button.pilot::before {
  content: "推奨";
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 20px;
  margin-right: 8px;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
}

.secondary-button {
  background: var(--surface-2);
  border-color: var(--line);
  color: var(--text);
  padding: 0 14px;
}

.mini-button {
  min-height: 32px;
  padding: 0 12px;
  border-color: var(--line);
  background: var(--surface-2);
  color: var(--text);
  font-size: 12px;
}

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

.option-grid label {
  margin: 0;
}

.option-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

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

.meta-grid div {
  min-height: 68px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.meta-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.meta-grid strong {
  display: block;
  overflow: hidden;
  color: var(--text);
  font-size: 15px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.results-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.video-gallery-panel {
  padding: 12px;
}

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

.saved-output-list {
  display: grid;
  gap: 12px;
}

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

.review-filter button {
  min-width: 0;
  min-height: 34px;
  padding: 0 4px;
  border-color: var(--line);
  background: var(--surface-2);
  color: var(--text);
  font-size: 11px;
  white-space: nowrap;
}

.review-filter button.is-selected {
  border-color: rgba(8, 127, 114, 0.36);
  background: rgba(8, 127, 114, 0.12);
  color: var(--teal);
}

.approved-summary {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  border: 1px solid rgba(8, 127, 114, 0.22);
  background: rgba(8, 127, 114, 0.07);
  padding: 10px;
}

.approved-summary-heading,
.approved-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px;
}

.approved-summary-heading {
  grid-template-columns: minmax(0, 1fr) auto;
}

.approved-summary-heading strong,
.approved-item strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.approved-summary-heading span,
.approved-item small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.approved-item {
  border-top: 1px solid rgba(8, 127, 114, 0.16);
  padding-top: 8px;
}

.approved-item div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.approved-item a {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.saved-job {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.saved-job:first-child {
  border-top: 0;
  padding-top: 0;
}

.saved-job-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.saved-job-heading strong {
  font-size: 13px;
}

.saved-job-heading span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.saved-job-meta {
  display: grid;
  gap: 3px;
  margin-top: -4px;
}

.saved-job-meta p,
.saved-job-meta small {
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.saved-job-meta small {
  color: var(--amber);
}

.video-card {
  min-width: 0;
  display: grid;
  gap: 6px;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 7px;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.video-card:focus-visible {
  border-color: var(--teal);
  outline: 3px solid rgba(8, 127, 114, 0.16);
}

.video-thumb {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 9 / 16;
  border-radius: 4px;
  background: #111;
}

.video-thumb.is-wide {
  aspect-ratio: 16 / 9;
}

.video-thumb img,
.video-thumb video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-thumb.is-missing::before {
  content: "サムネ生成中";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.video-play-badge {
  position: absolute;
  right: 6px;
  bottom: 6px;
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 24px;
  border-radius: 999px;
  background: rgba(21, 24, 25, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.video-card strong,
.video-card small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-card strong {
  font-size: 12px;
  line-height: 1.35;
}

.video-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.review-status {
  justify-self: start;
  min-height: 22px;
  display: inline-grid;
  place-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.review-status.is-approved {
  background: rgba(8, 127, 114, 0.12);
  color: var(--teal);
}

.review-status.is-hold {
  background: #fff8e8;
  color: var(--amber);
}

.review-status.is-rejected {
  background: rgba(214, 61, 46, 0.1);
  color: var(--accent);
}

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

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

.review-action {
  min-width: 0;
  min-height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface-2);
  color: var(--text);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.review-action.is-selected {
  border-color: rgba(8, 127, 114, 0.36);
  background: rgba(8, 127, 114, 0.12);
  color: var(--teal);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 16px;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 24, 25, 0.72);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: calc(100dvh - 32px);
  display: grid;
  gap: 10px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #111;
  padding: 10px;
  color: #fff;
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.video-modal-header strong {
  min-width: 0;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-close-button {
  min-height: 34px;
  padding: 0 10px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 12px;
}

#videoPlayer {
  width: 100%;
  max-height: min(62dvh, 620px);
  border-radius: 4px;
  background: #000;
}

.video-modal-meta {
  display: grid;
  gap: 10px;
}

.modal-post-block {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
}

.modal-post-heading {
  display: grid;
  gap: 3px;
}

.modal-post-heading strong,
.modal-post-heading small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.modal-post-heading strong {
  font-size: 13px;
}

.modal-post-heading small,
.modal-post-block p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.45;
}

.modal-post-block p {
  overflow-wrap: anywhere;
}

.modal-copy-text {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.26);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.45;
}

.modal-copy-text:focus {
  border-color: rgba(255, 255, 255, 0.38);
  outline: 3px solid rgba(255, 255, 255, 0.12);
}

.modal-tags {
  font-weight: 800;
}

.modal-action-row,
.modal-review {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.modal-review {
  justify-content: space-between;
}

.video-modal-meta .review-actions {
  min-width: min(100%, 210px);
}

.candidate-column,
.detail-panel {
  min-width: 0;
  min-height: auto;
  padding: 12px;
}

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

.section-heading span {
  min-width: 44px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.candidate-list {
  display: grid;
  gap: 10px;
}

.candidate-item {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 58px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  text-align: left;
}

.candidate-item:hover,
.candidate-item.is-selected {
  border-color: var(--teal);
  box-shadow: inset 4px 0 0 var(--teal);
}

.rank,
.score {
  display: grid;
  place-items: center;
  font-weight: 900;
}

.rank {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  font-size: 13px;
}

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

.candidate-main strong,
.candidate-main small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.candidate-main strong {
  font-size: 14px;
  line-height: 1.35;
}

.candidate-main small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.candidate-tags {
  min-height: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 7px;
}

.candidate-tags span {
  min-height: 18px;
  display: inline-grid;
  place-items: center;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(8, 127, 114, 0.1);
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.score {
  color: var(--accent);
  font-size: 15px;
}

.detail-content {
  display: grid;
  gap: 14px;
}

.progress-card {
  display: grid;
  gap: 10px;
  padding: 2px 0;
}

.progress-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.progress-topline strong {
  font-size: 15px;
}

.progress-topline span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.progress-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.progress-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-2);
}

.progress-bar span {
  position: relative;
  display: block;
  width: var(--progress, 4%);
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: var(--teal);
  transition: width 220ms ease;
}

.progress-bar.is-running span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.56), transparent);
  animation: progress-shine 1.1s linear infinite;
}

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

.progress-step {
  min-width: 0;
  min-height: 48px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  padding: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.progress-step::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
}

.progress-step.is-done {
  border-color: rgba(8, 127, 114, 0.25);
  background: rgba(8, 127, 114, 0.08);
  color: var(--teal);
}

.progress-step.is-current {
  border-color: rgba(214, 61, 46, 0.28);
  background: rgba(214, 61, 46, 0.08);
  color: var(--accent);
}

.detail-block {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.detail-block:first-child {
  border-top: 0;
  padding-top: 0;
}

.detail-block label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.detail-block p,
.code-line {
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.code-line {
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  background: #f8faf9;
  padding: 10px;
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 12px;
}

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

.reason-list span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(8, 127, 114, 0.1);
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.diagnosis-block p {
  margin: 0 0 8px;
  font-weight: 800;
}

.diagnosis-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.diagnosis-list span {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.diagnosis-list .is-good {
  background: rgba(8, 127, 114, 0.1);
  color: var(--teal);
}

.diagnosis-list .is-caution {
  background: rgba(214, 61, 46, 0.1);
  color: var(--accent);
}

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

.quality-grid div {
  min-width: 0;
  min-height: 50px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  padding: 8px 10px;
}

.quality-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.quality-grid strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quality-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.quality-flags span {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(214, 61, 46, 0.1);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
}

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

.copy-row button,
.review-row button {
  min-height: 36px;
  padding: 0 12px;
  background: var(--text);
  color: #fff;
  font-size: 12px;
}

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

.review-row button[data-candidate-review="approved"] {
  background: var(--teal);
}

.review-row button[data-candidate-review="hold"] {
  background: var(--amber);
}

.review-row button[data-candidate-review="rejected"] {
  background: var(--accent);
}

.review-row button.is-selected {
  box-shadow: 0 0 0 3px rgba(20, 20, 20, 0.16);
}

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

.file-link {
  min-height: 36px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  border-radius: 6px;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.warning {
  border-left: 4px solid var(--amber);
  background: #fff8e8;
  padding: 10px 12px;
  color: #4f3700;
  line-height: 1.5;
}

.empty-state {
  max-width: 100%;
  min-height: 160px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  color: var(--muted);
  text-align: center;
  padding: 22px;
  overflow-wrap: anywhere;
}

.error-state {
  place-items: stretch;
  align-content: center;
  gap: 10px;
  color: var(--text);
  text-align: left;
}

.error-state strong {
  color: var(--amber);
  font-size: 15px;
}

.error-state p {
  color: var(--muted);
  line-height: 1.55;
}

.error-state details {
  max-width: 100%;
  color: var(--muted);
  font-size: 12px;
}

.error-state summary {
  cursor: pointer;
  font-weight: 900;
}

.error-state pre {
  max-width: 100%;
  max-height: 220px;
  overflow: auto;
  border: 1px solid var(--line);
  background: #f8faf9;
  padding: 10px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
  }

  .primary-action-row,
  .results-layout,
  .meta-grid,
  .option-grid,
  .progress-steps {
    grid-template-columns: 1fr;
  }

  .candidate-column,
  .detail-panel {
    min-height: auto;
  }
}

@media (min-width: 720px) {
  .topbar {
    align-items: center;
    flex-direction: row;
    gap: 24px;
    padding: 24px clamp(20px, 4vw, 56px) 18px;
  }

  .workspace {
    gap: 18px;
    padding: 20px clamp(20px, 4vw, 56px) 40px;
  }

  .control-panel,
  .video-gallery-panel,
  .detail-panel,
  .candidate-column {
    box-shadow: var(--shadow);
  }

  .control-panel {
    padding: 18px;
  }

  .primary-action-row {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 220px);
  }

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

  .meta-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

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

  .video-gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 380px) {
  .video-gallery {
    gap: 8px;
  }

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

@media (min-width: 1120px) {
  .results-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  }

  .candidate-column,
  .detail-panel {
    min-height: 520px;
    padding: 16px;
  }

  .progress-steps {
    grid-template-columns: repeat(6, minmax(72px, 1fr));
  }
}

@keyframes progress-shine {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(110%);
  }
}
