:root {
  font-family: "Segoe UI", "Noto Sans KR", Arial, sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.5;
  font-weight: 400;
  --blue-900: #1e3a8a;
  --blue-700: #1d4ed8;
  --blue-100: #dbeafe;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --amber-100: #fef3c7;
  --amber-300: #fcd34d;
  --amber-900: #78350f;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-600: #dc2626;
  --green-600: #16a34a;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }

html, body, #root {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #ffffff;
  color: var(--slate-900);
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.app-shell { min-height: 100vh; }
.single-layout { padding-bottom: 0; }
.single-preview-area {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}
.app-container { width: 100%; display: block; }
.app-screen {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.screen-header {
  background: var(--blue-700);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  font-size: 12px;
  min-height: 52px;
}

.simple-header > span,
.detail-header > span {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.single-title-header {
  justify-content: flex-start;
}

.screen-title-block {
  background: var(--blue-700);
  color: #ffffff;
  padding: 0 16px 18px;
}

.screen-title-block h1,
.screen-title-block h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.screen-title-block p {
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.72;
  word-break: keep-all;
}

.screen-content {
  padding: 18px 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-box {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--slate-300);
  background: linear-gradient(180deg, var(--blue-100) 0%, #e2e8f0 100%);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--slate-50);
}

.hero-copy { padding: 16px 16px 18px; }
.hero-badge {
  display: inline-block;
  background: var(--blue-900);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 12px;
}
.hero-type {
  font-size: 22px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
  line-height: 1.35;
}
.hero-desc {
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.7;
}

.section-card {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.section-card-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.section-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--slate-900);
  line-height: 1.45;
}

.section-intro {
  margin: 0 0 14px;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
}

.danger-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-600);
  color: #ffffff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
}

.safe-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-600);
  color: #ffffff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
}

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

.focus-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 14px;
  border-radius: 16px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
}

.focus-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--blue-700);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.focus-item p {
  margin: 0;
  color: var(--slate-800, #1e293b);
  font-size: 14px;
  line-height: 1.72;
  word-break: keep-all;
}

.bullet-list {
  margin: 0;
  padding-left: 20px;
  color: var(--slate-700);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bullet-list li {
  line-height: 1.75;
  word-break: keep-all;
}

.paragraph {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.82;
  word-break: keep-all;
}

.work-section-card {
  scroll-margin-top: 84px;
}

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

.category-button {
  border: 1px solid var(--slate-300);
  background: #ffffff;
  min-height: 56px;
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--slate-900);
  font-weight: 600;
  font-size: 14px;
  gap: 8px;
  width: 100%;
}

.category-button.active {
  border-color: var(--blue-700);
  background: #eff6ff;
  color: var(--blue-900);
  box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.12);
}

.category-button span {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.site-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.site-card {
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.site-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--slate-50);
}

.site-card-body { padding: 15px; }

.site-card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.site-card-title h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

.site-meta {
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 12px;
  word-break: keep-all;
}

.info-box {
  background: var(--slate-50);
  border-radius: 16px;
  padding: 14px;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.7;
}

.detail-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.5;
  margin-bottom: 8px;
}

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

.chip {
  background: #eef2ff;
  color: var(--blue-900);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
}

.tbm-box {
  background: var(--amber-100);
  border: 1px solid var(--amber-300);
  border-radius: 20px;
  padding: 18px;
}

.tbm-box strong {
  display: block;
  margin-bottom: 10px;
  color: #92400e;
  line-height: 1.4;
}

.tbm-box p {
  margin: 0;
  color: var(--amber-900);
  line-height: 1.85;
  word-break: keep-all;
}

.image-card {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.content-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--slate-50);
}

.image-caption {
  margin: 0;
  padding: 11px 14px 15px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--slate-600);
  background: #ffffff;
}

.source-box {
  font-size: 12px;
  color: var(--slate-600);
  line-height: 1.7;
}

.source-box a {
  color: var(--blue-700);
  text-decoration: underline;
}

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

.kv-item {
  border: 1px dashed var(--slate-300);
  border-radius: 14px;
  padding: 12px 14px;
  background: #ffffff;
}

.kv-item strong {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  color: var(--slate-600);
}

.kv-item span {
  font-size: 14px;
  color: var(--slate-900);
  line-height: 1.65;
}

.qr-url-box {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: var(--blue-900);
  line-height: 1.7;
  word-break: break-all;
}

.stop-card {
  background: linear-gradient(180deg, #fffdfd 0%, var(--red-50) 100%);
  border-color: var(--red-100);
}

.stop-card h3 {
  color: #991b1b;
}

.stop-card .bullet-list {
  color: #7f1d1d;
}

.floating-mobile-actions {
  display: none;
}

.floating-action-button {
  border: none;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--slate-900);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

.floating-action-button.primary {
  background: var(--blue-700);
  color: #ffffff;
}

.sticky-summary-bar {
  position: sticky;
  top: 0;
  z-index: 35;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.sticky-summary-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 14px;
  scrollbar-width: none;
}

.sticky-summary-inner::-webkit-scrollbar {
  display: none;
}

.sticky-summary-site,
.sticky-summary-work {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.sticky-summary-site {
  background: #dbeafe;
  color: var(--blue-900);
}

.sticky-summary-work {
  background: #eef2ff;
  color: #3730a3;
}

.sticky-mini-button {
  flex: 0 0 auto;
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  background: #e2e8f0;
  color: var(--slate-900);
}

.sticky-mini-button.emphasis {
  background: #fee2e2;
  color: #991b1b;
}

@media (min-width: 1024px) {
  body { background: #f1f5f9; }
  .single-preview-area { padding: 24px; background: #f1f5f9; }
  .app-container { display: flex; justify-content: center; }
  .app-screen {
    max-width: 760px;
    min-height: auto;
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .site-grid { grid-template-columns: 1fr 1fr; }
  .kv-grid { grid-template-columns: 1fr 1fr; }
  .focus-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .screen-header { padding: 12px 12px; font-size: 12px; }
  .screen-title-block { padding: 0 12px 15px; }
  .screen-title-block h1,
  .screen-title-block h2 { font-size: 19px; }
  .screen-title-block p { font-size: 14px; line-height: 1.72; }
  .screen-content { padding: 15px 14px 92px; gap: 15px; }
  .hero-type { font-size: 19px; }
  .hero-desc { font-size: 14px; }
  .section-card { border-radius: 18px; padding: 16px; }
  .section-card h3 { font-size: 15px; }
  .section-intro { font-size: 14px; }
  .bullet-list { gap: 11px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-button { min-height: 58px; font-size: 15px; }
  .floating-mobile-actions {
    position: fixed;
    right: 14px;
    bottom: max(16px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 40;
  }
  .sticky-summary-inner {
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .screen-title-block h1,
  .screen-title-block h2 { font-size: 18px; }
  .screen-title-block p { font-size: 13px; }
  .screen-content { padding: 16px 14px 100px; gap: 16px; }
  .section-card { padding: 16px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-button { min-height: 56px; font-size: 15px; padding: 13px 14px; }
  .danger-badge,
  .chip,
  .hero-badge,
  .safe-badge { font-size: 11px; }
  .focus-item { grid-template-columns: 30px 1fr; gap: 10px; padding: 12px; }
  .focus-number { width: 30px; height: 30px; font-size: 12px; }
  .bullet-list { gap: 12px; }
  .floating-action-button { min-height: 48px; padding: 0 15px; font-size: 13px; }
}

.phase-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.primary-link-button,
.secondary-link-button {
  border: none;
  border-radius: 14px;
  min-height: 46px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
}

.primary-link-button {
  background: var(--blue-700);
  color: #ffffff;
}

.secondary-link-button {
  background: #eef2ff;
  color: #3730a3;
}

.primary-link-button.is-disabled,
.primary-link-button:disabled,
.secondary-link-button:disabled {
  opacity: 0.45;
  pointer-events: none;
}

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

.phase2-step-card {
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 14px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.phase2-step-card strong {
  color: var(--blue-900);
  font-size: 13px;
}

.phase2-step-card span {
  color: var(--slate-700);
  font-size: 14px;
  line-height: 1.6;
}

.phase2-step-card.active {
  border-color: #bfdbfe;
  background: #eff6ff;
}

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

.phase2-site-button {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  text-align: left;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.phase2-site-button.active {
  border-color: var(--blue-700);
  box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.18);
}

.phase2-site-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--slate-50);
}

.phase2-site-copy {
  padding: 12px 13px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phase2-site-copy strong {
  font-size: 14px;
  color: var(--slate-900);
}

.phase2-site-copy span {
  font-size: 12px;
  color: var(--slate-600);
}

.phase2-progress-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.phase-note {
  margin: 14px 0 0;
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.72;
}

.phase2-upload-grid,
.phase2-result-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.phase2-upload-card,
.analysis-result-card {
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  padding: 16px;
  background: #ffffff;
}

.phase2-upload-card.ready {
  border-color: #bbf7d0;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.upload-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.upload-status-pill,
.analysis-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.upload-status-pill.pending,
.analysis-chip.info {
  background: #eef2ff;
  color: #3730a3;
}

.upload-status-pill.ready,
.analysis-chip.demo {
  background: #dcfce7;
  color: #166534;
}

.analysis-chip.warn {
  background: #fee2e2;
  color: #991b1b;
}

.photo-hint {
  margin: 10px 0 12px;
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.7;
}

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

.upload-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.upload-action-button {
  border: 1px solid var(--blue-200);
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
  color: var(--blue-900);
  border-radius: 16px;
  min-height: 76px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  text-align: left;
  box-shadow: 0 6px 16px rgba(29, 78, 216, 0.08);
}

.upload-action-button strong {
  font-size: 16px;
  line-height: 1.3;
}

.upload-action-button span {
  font-size: 12px;
  color: var(--slate-600);
  line-height: 1.5;
}

.upload-action-button.camera {
  border-color: #bbf7d0;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  color: #166534;
}

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

.upload-action-button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.22);
  outline-offset: 2px;
}

.upload-preview-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

.upload-preview-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 10px;
  background: var(--slate-50);
}

.upload-preview-thumb {
  width: 84px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--slate-100);
}

.upload-preview-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.upload-preview-meta strong,
.upload-preview-meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-preview-meta strong {
  font-size: 13px;
  color: var(--slate-900);
}

.upload-preview-meta span {
  font-size: 12px;
  color: var(--slate-600);
}

.upload-remove-button {
  border: none;
  background: #fee2e2;
  color: #991b1b;
  border-radius: 10px;
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
}

.empty-state-box {
  border: 1px dashed var(--slate-300);
  border-radius: 14px;
  padding: 16px;
  color: var(--slate-600);
  background: var(--slate-50);
  font-size: 13px;
  line-height: 1.65;
}

.phase2-result-summary {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.json-preview {
  margin: 0;
  padding: 14px;
  border-radius: 14px;
  background: #0f172a;
  color: #e2e8f0;
  font-size: 12px;
  line-height: 1.65;
  overflow: auto;
}

.phase2-toolbar {
  position: sticky;
  bottom: 0;
  z-index: 30;
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--slate-200);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.phase2-toolbar > * {
  flex: 1;
}

@media (min-width: 1024px) {
  .phase2-upload-grid,
  .phase2-result-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .upload-preview-item {
    grid-template-columns: 72px 1fr;
  }

  .upload-action-grid {
    grid-template-columns: 1fr;
  }

  .upload-action-button {
    min-height: 72px;
  }

  .upload-remove-button {
    grid-column: 1 / -1;
  }

  .phase2-toolbar {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .primary-link-button,
  .secondary-link-button {
    width: 100%;
  }

  .phase-entry-actions {
    flex-direction: column;
  }
}

.hazard-feedback-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.hazard-feedback-item {
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 12px;
  background: var(--slate-50);
}

.hazard-feedback-item p {
  margin: 0;
  color: var(--slate-800, #1e293b);
  line-height: 1.7;
}

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

.hazard-feedback-button {
  border: 1px solid var(--slate-300);
  background: #ffffff;
  color: var(--slate-700);
  border-radius: 999px;
  min-height: 36px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
}

.hazard-feedback-button.active.yes {
  background: #dcfce7;
  border-color: #86efac;
  color: #166534;
}

.hazard-feedback-button.active.no {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #991b1b;
}

.hazard-feedback-button.active.hold {
  background: #fef3c7;
  border-color: #fcd34d;
  color: #92400e;
}


.compact-title-block p {
  margin-top: 6px;
}

.compact-screen-content {
  gap: 14px;
}

.compact-hero-box {
  border-radius: 18px;
}

.compact-hero-copy {
  padding: 14px;
}

.quick-action-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.compact-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.compact-tbm-box {
  margin-bottom: 0;
}

.compact-upload-header {
  align-items: center;
}

.compact-upload-copy {
  color: var(--slate-600);
  font-size: 13px;
}

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

.analysis-page-content {
  padding-bottom: 120px;
}

.single-work-upload-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .compact-guide-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 768px) {
  .compact-tbm-box {
    margin-bottom: 86px;
  }
}


.analysis-entry-card {
  margin-top: 4px;
}

.phase2-upload-card.active-focus {
  border-color: var(--blue-700);
  box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.14);
}
