/* Bibelraum - Styles */
* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
  background: #5C4033;
  border-radius: 3px;
}

::selection {
  background: #FFD700;
  color: #1a1a1a;
}

/* Avatar-Auswahl */
.av-choice {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: rgba(255,255,255,0.08);
}
.av-choice:hover {
  transform: scale(1.15);
  border-color: #fff;
}
.av-choice.selected {
  border-color: #FFD700;
  box-shadow: 0 0 12px rgba(255,215,0,0.5);
  transform: scale(1.1);
}
