
.words-table-sel-wrapper {
  padding: 3px;
  margin: 2px;
  border-bottom: 1px solid var(--border-color);
  box-sizing: border-box;
}

.word-help {
  padding-left: 5px;
  cursor: pointer;
  opacity: 0.2;
  font-size: 1.2rem; /* Adjust icon size */
  color: inherit; /* Inherit text color for theme support */
  vertical-align: middle;
}

.words-table-sel-wrapper:hover .word-help {
  cursor: pointer;
  opacity: 1;
}

.words-table-wrapper {
  display: grid;
  gap: 3px;
  grid-template-columns: 1fr;
}


@media (min-width: 576px) {
  .words-table-wrapper { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .words-table-wrapper { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 992px) {
  .words-table-wrapper { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1200px) {
  .words-table-wrapper { grid-template-columns: repeat(5, 1fr); }
}
