::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}
/* .menu-item.menu-item-dark.menu-item-active, .menu-item.menu-item-dark.menu-item-active:hover {
  background-color: rgb(229 1 1) !important;
} */
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  border: none;
}
.dark .overflow-y-auto::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border: none;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}



.inside {
  background-color: #888;
  min-height: 200px;
  color: #fff;
  display: block;
  overflow-y: auto;
  max-height: 200px;
  overflow-x: hidden;
}
.attacks,
.infections {
  margin-left: 25px;
}
.spam {
  margin-left: 25px;
}

.attacks:before {
  background-image: url(icons/attacks.png);
  background-size: 100%;
  background-position: center;
  content: "";
  position: relative;
  padding: 15px;
  top: 10px;
  right: 7px;
  display: inline-block;
  background-repeat: no-repeat;
}

.infections:before {
  background-image: url(icons/infections.png);
  background-size: 100%;
  background-position: center;
  content: "";
  position: relative;
  padding: 15px;
  top: 10px;
  right: 7px;
  display: inline-block;
  background-repeat: no-repeat;
}

.spam:before {
  background-image: url(icons/spam.png);
  background-size: 100%;
  background-position: center;
  content: "";
  position: relative;
  padding: 15px;
  top: 10px;
  right: 7px;
  display: inline-block;
  background-repeat: no-repeat;
}

mark.light-highlight {
  background-color: lightyellow;
}
.logo-container {
  position: relative;
  display: inline-block;
}

.logo-link {
  position: relative;
  display: inline-block;
}

.logo-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Eye overlay relative to logo (percent makes it responsive) */
.blinking-eye {
  position: absolute;
  right: 20%;  /* tweak % until aligned with eye */
  top: 38%;    /* tweak % until aligned */
  width: 10%;  /* relative to logo width */
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  pointer-events: none; /* don’t block clicks */
}

.pupil {
  width: 100%;
  height: 100%;
  background: transparent; /* eye from logo always visible */
}

/* Eyelid animation */
.blinking-eye::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111826; /* eyelid, match bg/theme */
  top: -100%;
  left: 0;
  animation: blink 4s infinite;
}

@keyframes blink {
  0%, 90%, 100% {
    top: -100%; /* eye open */
  }
  92%, 98% {
    top: 0; /* eye closed */
  }
}
