.upload-zone {
  width: 100%;
  min-height: 150px;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  line-height: 1.35;
}

.upload-zone .upload-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blush);
  color: var(--wine);
  line-height: 1;
}

.upload-zone h3,
.upload-zone p {
  margin: 0;
  text-align: center;
}

.upload-zone:hover,
.upload-zone:focus-within {
  border-color: var(--wine-2);
  background: #fbf4f7;
}

@media (max-width: 600px) {
  .upload-zone {
    min-height: 125px;
    padding: 22px 14px;
  }

  .upload-zone .upload-icon {
    width: 42px;
    height: 42px;
  }
}

.upload-batch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
}

.upload-batch-actions .button {
  flex: 1 1 105px;
  min-width: 0;
  padding: 8px 9px;
}

.replacement-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
  padding: 13px 15px;
  border: 1px solid #d7b56b;
  border-radius: 12px;
  background: #fff8e8;
  color: #72500d;
}

.replacement-notice span { font-size: .82rem; }

@media (max-width: 760px) {
  .replacement-notice {
    align-items: flex-start;
    flex-direction: column;
  }
}
