/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 11 2026 | 08:32:44 */
.file-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-list__item {
  border: 1px solid #e0e0e0;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.file-list__item:hover {
  background-color: #bf990096;
  border-color: transparent;
}

.file-list__label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  user-select: none;
}

.file-list__checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #a50800; /* Häkchen-Farbe */
  cursor: pointer;
}

.file-list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d32f2f; /* PDF-typisches Rot */
  flex-shrink: 0;
}

.file-list__title {
  font-size: 14px;
  color: #1a1a1a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-list__label {
  justify-content: space-between;
}

.file-list__price {
  font-weight: 600;
  color: #1a1a1a;
  flex-shrink: 0;
  margin-left: 12px;
}

/* Optional: Eintrag hervorheben, wenn Checkbox ausgewählt ist */
.file-list__item:has(.file-list__checkbox:checked) {
  background-color: #bf9900;
  border-color: transparent;
	color: #fff;
}