.glossary-wrapper {
  max-width: 800px;
  margin: 20px auto;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
}

#glossary-search {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 20px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

#glossary-results .term-item {
  margin-bottom: 15px;
  padding: 12px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}

#glossary-results .term-item h4 {
  margin: 0 0 5px;
  font-weight: 600;
}
.glossary-alphabet {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.alphabet-letter {
  cursor: pointer;
  padding: 5px 10px;
  border-bottom: 2px solid transparent;
  font-weight: 600;
}

.alphabet-letter.active,
.alphabet-letter:hover {
  border-color: #2563eb;
  color: #2563eb;
}
