#quiz-log-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: #39ff14;
  font-family: monospace;
  font-size: 0.78rem;
  padding: 0 1rem;
  max-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  border-top: 2px solid #39ff14;
  z-index: 9998;
  box-sizing: border-box;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
#quiz-log-panel.visible {
  max-height: 100px;
  padding: 0.4rem 1rem;
}
#log-controls {
  position: fixed;
  bottom: 8px;
  right: 8px;
  z-index: 10000;
  display: flex;
  gap: 4px;
}
#log-controls button {
  background: #111;
  color: #39ff14;
  border: 1px solid #39ff14;
  border-radius: 4px;
  padding: 3px 6px;
  font-size: 0.7rem;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
#log-controls button:hover {
  opacity: 1;
  background-color: #39ff14;
  color: #000;
}