.item-thumb {
  position: relative;
  border-radius: 8px 0 8px 0; /* oben links + unten rechts gerundet */
  overflow: hidden;
  height: 100px;
  min-height: 100px;
  max-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center !important;
}

/* unscharfer Hintergrund */
.item-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px);
  transform: scale(1.05);
  z-index: 1;
}

/* echtes Vorschaubild im richtigen Seitenverhältnis, mittig */
.item-thumb .overlay-img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  display: block;
}

/* Badges-Container: rechts unten */
.item-thumb .badges {
  position: absolute;
  right: 6px;
  bottom: 6px;
  display: flex;
  gap: 4px;
  z-index: 4;
}

/* Einzelne Badge-Stile */
.item-thumb .item-duration,
.item-thumb .item-type-icon {
  background: rgba(0, 0, 0, 1);
  color: white;
  padding: 0px 0px;
  font-size: 0.65rem;
  line-height: 1;
  border-radius: 8px 0 8px 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
z-index: 4;
}

.viewer-sidebar .item-content, .sliding-sidebar .viewer-sidebar .item-content, .visible-sidebar .viewer-sidebar .item-content{
height:100px;}

/* Bild neben dem Player: genau so hoch wie dessen Container */
.viewer-image-container img {
  max-height: 500px;
  object-fit: contain;
  display: block;
}
.thumbnail-container {
max-height:100px;
display: flex;
/* gap: 10px; */
overflow-x: auto;
scroll-behavior: smooth;
/* max-width: 113%; */
/* padding: 10px 0; */
scrollbar-width: none;
}

:root {
  --default-logo-height: 200px;
}

/* Logo-Container: H?he steuern ?ber die Variable */
.logo {
  --logo-height: 50px; /* oder was auch immer der verf?gbare Platz ist */
  height: var(--logo-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bild selbst passt sich an */
.logo img {
  height: var(--logo-height);
  width: auto;
  max-width: 100%;
  display: block;
  /* falls irgendwo inline ein height gesetzt ist, wird es ignoriert: */
  object-fit: contain;
}

