.field-files-view {
  max-width: 720px;

  > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    background-color: #e3e9f3;
    border-radius: 6px;
    padding: 10px 10px;
    margin-bottom: 6px;
    width: 100%;
    box-sizing: border-box;

    &:last-child {
      margin-bottom: 0;
    }
  }

  .file {
    flex: 1;

    a {
      font-size: 14px;
    }

  }

  .file__created {
    font-size: 14px;
    color: #7d7e83;
    white-space: nowrap;
  }

  .file__size {
    font-size: 14px;
    color: #7d7e83;
  }

  .file__download {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    font-size: 14px;
    color: #0036b3;
    text-decoration: none;
    white-space: nowrap;

    &::before {
      content: "";
      width: 18px;
      height: 18px;
      background-color: currentColor;
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 16l-6-6h4V4h4v6h4l-6 6zm-7 2h14v2H5v-2z'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 16l-6-6h4V4h4v6h4l-6 6zm-7 2h14v2H5v-2z'/%3E%3C/svg%3E");
      mask-size: contain;
      flex-shrink: 0;
    }

    &:hover {
      text-decoration: underline;
    }
  }
}

.field--type-file .file-widget-multiple__table-wrapper {
  margin: 0;
}

.form-managed-file .file a {
  pointer-events: none;
  cursor: default;
  color: inherit;
  text-decoration: none;
}
