
/* Gesamte Tabelle einheitlich formatieren */
.isc_all_image_list_box table {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  border: 0px solid grey;
  border-collapse: collapse;
  width: 100%;   /* optional */
}

/* Kopfzeilen */
.isc_all_image_list_box table th {
  white-space: nowrap;   /* kein Umbruch */
  padding: 8px;
  text-align: left;
  border: 0px solid grey;
 font-weight: 500;
font-family: "Barlow", sans-serif;
font-size: 16px;
text-transform: uppercase; 
}

/* Zellen */
.isc_all_image_list_box table td {
  padding: 8px;
  border: 0px solid grey;
  vertical-align: top;
}

/* Entfernt die Bulletpoints in der Tabelle */
.isc_all_image_list_box table td ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Link-Formatierung anpassen */
.isc_all_image_list_box table td a {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  text-decoration: none;
}

.isc_all_image_list_box table td a:hover {
  text-decoration: none;
  color: #333;
}

.isc_all_image_list_box {
  overflow: auto;
  scrollbar-width: none;     /* Firefox */
  -ms-overflow-style: none;  /* IE, Edge */
}

.isc_all_image_list_box::-webkit-scrollbar {
  display: none;             /* Chrome, Safari */
}

/* Abwechselnde Hintergrundfarbe für Tabellenzeilen */
.isc_all_image_list_box table tbody tr:nth-child(odd) {
  background-color: #ffffff;   /* weiß */
}

.isc_all_image_list_box table tbody tr:nth-child(even) {
  background-color: #f7f7f7;   /* hellgrau */
}