.uppy-field {
  position: relative;
  height: 175px;
  overflow: hidden;
  width: 300px;
  border: 1px solid var(--border-color);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;

  .uploader {
    width: 100%;

    & label {
      position: absolute;
      top: 0;
      left: 0;
      margin:0;
      padding: 0.25rem;
      background-color: white;
      border-bottom: 1px solid var(--border-color);
      border-right: 1px solid var(--border-color);
      border-bottom-right-radius: 0.25rem;
    }

    .uppy-DragDrop--isDragDropSupported {
      border: none;
      border-radius: 0rem;
    }

    .uppy-DragDrop-inner {
      width: 100%;
    }
  }

  .uppy-Root {
    height: 0px;

    & button:focus {
      outline: none;
      box-shadow: none;
    }
  }

  .actions {
    position: absolute;
    top: 0;
    right: 0;
    border-left: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-radius: 0 0 0 0.25rem;
    display: flex;
    gap: 0;
    background-color: white;
    overflow: hidden;
    .btn {
      border: none;
      font-size: 0.75rem;
      padding: 0.25rem;
      border-radius: 0;
      padding-top: 0.1rem;
      padding-bottom: 0.1rem;
    }
    .btn:not(:last-child) {
      border-right: 1px solid var(--border-color);
    }
  }
}