/* ============================================================
   Atlas — components.css
   UI components: cards, updates, attachments, buttons,
   empty state, modal, fields, lightbox, footer, utilities.
   ============================================================ */

/* board / client sections */
.notice {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 26px;
}
.notice-inner {
  margin-top: 16px;
  border-radius: var(--radius-sm);
  padding: 11px 15px;
  font-size: 13px;
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.notice-inner.success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}
.notice-inner.error {
  background: var(--critical-soft);
  border: 1px solid var(--critical-line);
  color: #8a201a;
}
.notice-inner svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 1px;
}
.context-line {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 26px 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.context-line .eyebrow {
  color: var(--ink);
}
.context-line .ctx-sub {
  font-size: 12px;
  color: var(--muted);
}
.board-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px 26px 90px;
}

.client-section {
  margin-top: 26px;
}
.client-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 2px 14px;
  border-bottom: 1px solid var(--hair-2);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.client-accent {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--yellow);
  flex: 0 0 auto;
}
.client-name {
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.015em;
  line-height: 1.1;
  word-break: break-word;
}
.client-pill {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--hair-2);
  border-radius: 20px;
  padding: 3px 10px;
  flex: 0 0 auto;
}
.client-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mini-btn {
  height: 34px;
  border-radius: 9px;
  border: 1px solid var(--hair-2);
  background: var(--card);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 500;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.15s;
}
.mini-btn:hover {
  border-color: var(--ink);
}
.mini-btn svg {
  width: 14px;
  height: 14px;
}
.mini-btn.primary {
  background: var(--yellow);
  border-color: var(--yellow);
  font-weight: 600;
}
.mini-x {
  width: 34px;
  height: 34px;
  border: 1px solid transparent;
  background: none;
  border-radius: 9px;
  color: var(--muted-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.15s;
}
.mini-x:hover {
  color: var(--critical);
  background: var(--critical-soft);
}
.mini-x.armed {
  color: #fff;
  background: var(--critical);
  border-color: var(--critical);
  width: auto;
  padding: 0 11px;
  font-size: 11px;
  font-weight: 600;
  gap: 5px;
}
.mini-x svg {
  width: 15px;
  height: 15px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 18px;
  align-items: start;
}
.client-empty {
  color: var(--muted);
  font-size: 13.5px;
  padding: 6px 2px 2px;
  font-style: italic;
}

.card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
  position: relative;
}
.card-head {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.logo-chip {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  border: 1px solid var(--hair);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
  font: inherit;
  padding: 0;
}
button.logo-chip {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.logo-chip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}
.logo-chip.placeholder {
  background: var(--yellow-soft);
  border-color: var(--yellow-line);
  color: var(--yellow-ink);
  font-weight: 700;
  font-size: 18px;
}
.logo-chip.upload {
  cursor: pointer;
  border-style: dashed;
  color: var(--muted);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.logo-chip.upload:hover {
  border-color: var(--yellow-line);
  color: var(--yellow-ink);
  background: var(--yellow-soft);
}
.logo-chip.upload svg {
  width: 22px;
  height: 22px;
}
.logo-chip.clickable {
  cursor: pointer;
  padding: 0;
  border: 1px solid var(--hair);
  background: #fff;
  position: relative;
}
.logo-chip.clickable img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}
.logo-chip-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.82);
  color: var(--yellow-ink);
  opacity: 0;
  transition: opacity 0.15s;
  border-radius: inherit;
}
.logo-chip.clickable:hover .logo-chip-overlay {
  opacity: 1;
}
.logo-chip-overlay svg {
  width: 20px;
  height: 20px;
}
.logo-chip.pdfchip,
.logo-field .prev.pdfchip {
  background: var(--yellow-soft);
  border-color: var(--yellow-line);
}
.pdfchip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--yellow-ink);
}
.pdfchip-inner svg {
  width: 18px;
  height: 18px;
}
.pdfchip-inner b {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.card-titles {
  flex: 1;
  min-width: 0;
  padding-right: 28px;
}
.brand-name {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  word-break: break-word;
}
.brand-sub {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}
.card-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border: 1px solid transparent;
  background: none;
  border-radius: 8px;
  color: var(--muted-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.15s;
}
.card-x:hover {
  color: var(--critical);
  background: var(--critical-soft);
}
.card-x.armed {
  color: #fff;
  background: var(--critical);
  border-color: var(--critical);
  width: auto;
  padding: 0 9px;
  font-size: 11px;
  font-weight: 600;
  gap: 5px;
}
.card-x svg {
  width: 14px;
  height: 14px;
}
.replace-logo {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  padding: 2px 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s;
}
.replace-logo:hover {
  color: var(--ink);
}
.replace-logo svg {
  width: 12px;
  height: 12px;
}

.updates {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.u-banner {
  background: #f8f8f5;
  border: 1px solid var(--hair);
  border-radius: var(--radius-md);
  padding: 13px 15px 12px;
}
.u-banner.is-new {
  background: var(--yellow-soft);
  border-color: var(--yellow-line);
}
.u-banner.is-critical {
  background: var(--critical-soft);
  border-color: var(--critical-line);
  border-left: 3px solid var(--critical);
}
.u-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 7px;
}
.u-date {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.u-rel {
  font-size: 11px;
  color: var(--muted);
}
.tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 5px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tag.new {
  background: var(--yellow);
  color: var(--ink);
}
.tag.crit {
  background: var(--critical);
  color: #fff;
}
.tag .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}
.u-x {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 500;
  padding: 2px 4px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: 0.15s;
}
.u-x:hover {
  color: var(--critical);
}
.u-x.armed {
  color: #fff;
  background: var(--critical);
  padding: 2px 8px;
  font-weight: 600;
}
.u-x svg {
  width: 12px;
  height: 12px;
}
.u-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  word-break: break-word;
}
.u-body {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}
.u-body.clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.more-btn {
  margin-top: 6px;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.more-btn:hover {
  text-decoration: underline;
}
.more-btn svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s;
}
.more-btn.open svg {
  transform: rotate(180deg);
}

/* attachments */
.atts {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.att-img {
  width: 62px;
  height: 62px;
  border-radius: 9px;
  border: 1px solid var(--hair-2);
  overflow: hidden;
  background: #fff;
  padding: 0;
  cursor: zoom-in;
  position: relative;
}
.att-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.att-file {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--hair-2);
  border-radius: 9px;
  padding: 8px 11px;
  font-size: 12px;
  color: var(--ink);
  max-width: 200px;
  transition: border-color 0.15s;
}
.att-file:hover {
  border-color: var(--ink);
}
.att-file svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
  flex: 0 0 auto;
}
.att-file .fn {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

.no-updates {
  font-size: 13px;
  color: var(--muted);
  padding: 6px 2px 2px;
  font-style: italic;
}
.card-foot {
  display: flex;
  gap: 9px;
  margin-top: auto;
  padding-top: 2px;
  flex-wrap: wrap;
}
.btn {
  height: 38px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: 0.15s;
  white-space: nowrap;
}
.btn svg {
  width: 15px;
  height: 15px;
}
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  border: 1px solid var(--yellow);
}
.btn-primary:hover {
  opacity: 0.9;
}
.btn-primary:disabled {
  background: var(--hair);
  border-color: var(--hair);
  color: var(--muted-2);
  cursor: not-allowed;
}
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--hair-2);
}
.btn-ghost:hover {
  border-color: var(--ink);
}
.btn-ghost:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-ghost:disabled:hover {
  border-color: var(--hair-2);
}
.download-btns {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.btn-download {
  background: var(--yellow);
  color: var(--ink);
  border: 1px solid var(--yellow);
  flex: 1;
  min-width: 100px;
}
.btn-download:hover {
  opacity: 0.9;
}

.empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--muted);
  border: 1px dashed var(--hair-2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  margin-top: 18px;
}
.empty .eyebrow {
  display: block;
  margin-bottom: 10px;
}
.empty h2 {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}
.empty p {
  margin: 0 auto;
  max-width: 380px;
  font-size: 14px;
  line-height: 1.55;
}
.empty .btn-primary {
  margin-top: 18px;
}

/* modal */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 23, 21, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 20px;
  animation: fade 0.15s ease;
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal {
  background: #fff;
  border-radius: 18px;
  width: min(520px, 100%);
  max-height: 90vh;
  overflow: auto;
  box-shadow: var(--shadow-pop);
  animation: pop 0.18s ease;
}
@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.modal-head {
  padding: 22px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
.modal-head h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}
.modal-head .m-sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
}
.modal-close {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg);
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.modal-close:hover {
  background: var(--hair);
}
.modal-close svg {
  width: 16px;
  height: 16px;
}
.modal-body {
  padding: 18px 24px 24px;
}
.field {
  margin-bottom: 15px;
}
.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.field label .opt {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--muted-2);
}
.field input[type="text"],
.field input[type="password"],
.field textarea {
  width: 100%;
  border: 1px solid var(--hair-2);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: 0.15s;
  resize: vertical;
}
.field input[type="text"]:focus,
.field input[type="password"]:focus,
.field textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow-soft);
}
.field textarea {
  min-height: 84px;
  line-height: 1.55;
}
.logo-field {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-field .prev {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  border: 1px solid var(--hair);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  flex: 0 0 auto;
}
.logo-field .prev img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 6px;
}
.logo-field .prev.placeholder {
  background: var(--yellow-soft);
  border-color: var(--yellow-line);
  color: var(--yellow-ink);
  font-weight: 700;
}
.crit-toggle {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  user-select: none;
  padding: 6px 0 12px;
}
.crit-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.crit-box {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--hair-2);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.15s;
  flex: 0 0 auto;
}
.crit-toggle input:checked + .crit-box {
  background: var(--critical);
  border-color: var(--critical);
}
.crit-box svg {
  width: 13px;
  height: 13px;
  color: #fff;
  opacity: 0;
  transition: 0.15s;
}
.crit-toggle input:checked + .crit-box svg {
  opacity: 1;
}
.crit-toggle .lbl b {
  font-weight: 600;
  font-size: 14px;
}
.crit-toggle .lbl span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 1px;
}
.att-staging {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.att-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg);
  border: 1px solid var(--hair-2);
  border-radius: 8px;
  padding: 6px 8px 6px 10px;
  font-size: 12px;
  max-width: 220px;
}
.att-chip .thumb {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid var(--hair-2);
}
.att-chip .ico {
  width: 16px;
  height: 16px;
  color: var(--muted);
  flex: 0 0 auto;
}
.att-chip .fn {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}
.att-chip .rm {
  border: none;
  background: none;
  color: var(--muted);
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.att-chip .rm:hover {
  background: var(--critical-soft);
  color: var(--critical);
}
.att-chip .rm svg {
  width: 13px;
  height: 13px;
}
.attach-btn {
  border: 1px dashed var(--hair-2);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.15s;
}
.attach-btn:hover {
  border-color: var(--ink);
  border-style: solid;
}
.attach-btn svg {
  width: 15px;
  height: 15px;
  color: var(--muted);
}
.modal-foot {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 18, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  padding: 30px;
  cursor: zoom-out;
  animation: fade 0.15s ease;
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
/* File Action Modal */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.file-action-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.file-action-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.2s ease;
}
.file-action-popup {
  position: relative;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  width: 90%;
  overflow: hidden;
  animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.file-action-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--hair);
}
.file-action-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.file-action-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.file-action-close:hover {
  color: var(--ink);
}
.file-action-body {
  padding: 20px 24px;
  color: var(--muted);
  font-size: 14px;
}
.file-action-footer {
  display: flex;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid var(--hair);
  background: #fafafa;
}
.file-action-footer .btn {
  flex: 1;
}
.btn-delete {
  background: #fee2e2 !important;
  border: 1px solid #dc2626 !important;
  color: #dc2626 !important;
}
.btn-delete:hover {
  background: #fecaca !important;
}
.btn-delete:active {
  background: #fca5a5 !important;
}

footer.foot {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 26px 40px;
  border-top: 1px solid var(--hair);
  color: var(--muted);
  font-size: 12px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
label:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* recentBadge — hidden until there are recent updates (toggled in JS) */
#recentBadge{display:none}

/* ============================================================
   UPLOAD OVERLAY
   Full-screen blocker shown while a file upload is in flight.
   While visible it captures every pointer event, so nothing
   underneath is clickable until the upload finishes.
   ============================================================ */
.upload-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(23, 23, 21, 0.42);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  cursor: progress;
}
.upload-overlay.show {
  display: flex;
}
.upload-overlay .upload-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 36px;
  background: var(--card);
  border: 1px solid var(--hair-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  text-align: center;
}
.upload-overlay .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--hair-2);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: upload-spin 0.75s linear infinite;
}
.upload-overlay .upload-msg {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.upload-overlay .upload-sub {
  font-size: 12.5px;
  color: var(--muted);
}
@keyframes upload-spin {
  to { transform: rotate(360deg); }
}
/* While an upload is running, hint the busy state on the cursor everywhere. */
body.upload-busy {
  cursor: progress;
}
