.glossary-widget-container-7e282aee {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.glossary-filter-letters {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.glossary-filter-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background-color: #f5f5f5;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 14px;
    padding: 0;
}

.glossary-filter-letter[data-filter="all"] {
    width: auto;
    padding: 0 15px;
}

.glossary-filter-letter:hover,
.glossary-filter-letter.active {
    background-color: #000;
    color: #fff;
}

.glossary-terms-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.glossary-term {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.glossary-term:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.glossary-term-title {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: #111;
}

.glossary-term-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.glossary-no-results {
    padding: 20px;
    background: #f9f9f9;
    text-align: center;
    color: #666;
    border-radius: 8px;
    font-style: italic;
}