/* Create the layout for the link and the icon */
.file {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.file::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Map the MIME classes generated by Drupal 10 to your copied images */
.file--general::before,
.file--application-octet-stream::before {
  background-image: url('../icons/application-octet-stream.png');
}

.file--mime-application-pdf::before {
  background-image: url('../icons/application-pdf.png');
}

.file--mime-application-msword::before,
.file--mime-application-vnd-openxmlformats-officedocument-wordprocessingml-document::before {
  background-image: url('../icons/x-office-document.png');
}

.file--mime-application-vnd-ms-excel::before,
.file--mime-application-vnd-openxmlformats-officedocument-spreadsheetml-sheet::before {
  background-image: url('../icons/x-office-spreadsheet.png');
}

.file--mime-text-plain::before {
  background-image: url('../icons/text-plain.png');
}

.file--mime-image::before {
  background-image: url('../icons/image-x-generic.png');
}

.file--mime-video::before {
  background-image: url('../icons/video-x-generic.png');
}
