#content-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 4;
}
.content-item {
  display: flex;
  flex-direction: column;
  max-width: 8em;
  width: 8em;
  height: 13em;
  border: 2px solid #000000;
  margin: 2.5em;
  padding: 1em;
}
.content-item.hidden {
  display: none;
}
.content-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 8em;
  height: 5em;
  text-align: center;
  font-family: Arial, sans-serif;
  font-weight: bold;
  overflow-wrap: break-word;
}
.content-label-text {
  /* position: absolute;
  bottom: 2; */
}
.content-thumbnail {
  width: 8em;
  height: 8em;
  object-position: bottom;
  bottom: 0;
  object-fit: contain;
  /* outline-width: 3px;
  outline-style: solid;
  outline-color: green; */
}

.banner-container {
  text-align: center;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  /* font-family: 'Courier New', Courier New, monospace; */
  font-family: Arial, Helvetica, sans-serif;
}

.filter-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 0rem;
  padding: 0.5rem;
  flex-wrap: wrap;
  gap: 1rem;
  /* border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9; */
}

.filter-group {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: .5rem;
}

.filter-group label {
  display: inline-block;
  margin-right: 1rem;
  cursor: pointer;
}

.filter-title {

}

.filter-options {
  display: flex;
  flex-direction: column;
}

.tooltip {
  position: absolute;
  /* bottom: 100%; */
  /* left: 0; */
  width: 8em;
  /* height: 7em; */
  transform: translateY(-10px);
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1em;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 10;
}

.content-item.active .tooltip {
  opacity: 1;
  pointer-events: auto;
}