html,
body {
  overflow: auto;
}

.quiz-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    margin-top: 70px;
    padding: 20px;
    overflow: visible;
  }

  .quiz-column {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
  }

.words-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 10px 14px;
  background: #f0f0f0;
  border-radius: 12px; 
  cursor: pointer;
  transition: background-color 0.05s, box-shadow 0.12s;
  text-align: center;
  margin: 0;
  overflow: hidden;
  box-sizing: border-box;
  white-space: nowrap;
  border: solid #f5f1cd 2px;
  will-change: transform, height, opacity;


  outline: none; 
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

/* кастомный круглый фокус для клавиатуры/тачпада */
.words-item:focus { outline: none; }
.words-item:focus-visible {
  box-shadow: 0 0 0 3px rgba(157, 204, 241, 0.65);
}

/* приятный отклик при нажатии */
.words-item:active {
  transform: scale(0.985);
  box-shadow: 0 0 0 3px rgba(157, 204, 241, 0.45);
}

/* остальная раскраска как была */
.words-item.selected  { background: #d0e8ff; }
.words-item.correct   { background: #90ee90; }
.words-item.incorrect { background: #ffcccb; }