.file-upload {
  position: relative;
  display: grid;
  gap: var(--space-3);
  justify-items: center;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-muted);
  padding: var(--space-5);
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.file-upload.is-dragover,
.file-upload:focus-within {
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
  box-shadow: 0 0 0 4px var(--color-focus-ring);
}

.file-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.file-upload-label {
  display: grid;
  gap: var(--space-2);
  justify-items: center;
  color: var(--color-text-muted);
  cursor: pointer;
  text-align: center;
}

.file-upload-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius-lg);
  background: var(--gradient-brand);
  color: var(--simbo-white);
  font-weight: var(--font-extrabold);
}

.file-upload-name {
  justify-self: center;
  margin: 0;
  color: var(--color-primary);
  font-weight: var(--font-semibold);
  text-align: center;
}
