#dictionaryFormWrapper {
    display: none;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    background: #f9f9f9;
}

#addTermBtn {
    background-color: #0073aa;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}

#termSearch {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

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

.term-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f9f9f9;
    padding: 12px;
}

.term-title {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 6px;
}

.term-meta {
    color: #555;
    margin-bottom: 8px;
}

.term-definition {
    margin-bottom: 6px;
}