.forum_status {
  height: 200px;
  width: 100px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 10px; /* Innenabstand für den verschobenen Rand */
  background: url(/images/004/forum_status.png);
  background-size: 450%; /* Skaliert das Hintergrundbild auf 50% */
  background-repeat: no-repeat;
  background-position: center;
}

.forum_status::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background-size: cover;
  background-position: center;
  z-index: 1;
  border: 1px solid var(--designwhite); /* Innerer weißer Rand mit 60% Opazität */
}

.forum_on::before {
  background: rgba(255, 0, 0, 0); /* Rotes Overlay für ungelesene Foren */
}

.forum_off::before {
  background: rgba(128, 128, 128, 0); /* Graues Overlay für gelesene Foren */
}

.forum_status img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.forum_on {
background-position:  -176px -35px;
  
}

.forum_off {
  background-position: -225px -40px;
}

.forum_offclose {
  background-position: -225px -40px;
}

.forum_offlink {
  background-position: -355px -120px;
}

.subforumicon {
  height: 10px;
  width: 10px;
  display: inline-block;
  margin: 0 5px;
  background: url(../../../images/mini_status_sprite.png) no-repeat 0 0;
}

.subforum_minion {
  background-position: 0 0;
}

.subforum_minioff {
  background-position: 0 -10px;
}

.subforum_minioffclose {
  background-position: 0 -20px;
}

.subforum_miniofflink {
  background-position: 0 -30px;
}
