.vocab-list {
  margin-top: 20px;
}

/* .vocab-word {
  display: inline-block;
  margin: 10px;
  padding: 10px 15px;
  background: #e9ecef;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.vocab-word:hover {
  background: #d0ebff;
  transform: scale(1.05);
} */

/* Скрытые блоки */
.hidden {
  display: none;
}

/* Модалка */
#vocab-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.5);
}

/* Окно */
.modal-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  width: 600px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

/* Кнопка закрытия */
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* Анимация */
@keyframes fadeIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}