/* UPLOAD CARD */
.global-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md-12);
}

/* PREVIEW */
.global-upload-preview {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-lg-16);
  border: 2px dashed var(--color-border);
  background: var(--color-surface-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.global-upload-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PLACEHOLDER */
.global-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm-08);
  color: var(--color-text-secondary);
}

.global-upload-placeholder i {
  font-size: 36px;
}

/* BUTTONS */
.global-upload-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm-08);
}

/* HIDDEN INPUT */
.global-upload-input {
  display: none;
}
