/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 09 2026 | 09:59:31 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.term-card-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.term-card {
    border: 1px solid #ccc;
    padding: 10px;
    width: 110px;
    text-align: center;
    position: relative;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.term-card:hover {
    border-color: #44aa44;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.term-card-image img {
    width: 60px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.term-card-name {
    font-size: 14px;
    font-weight: 500;
}

.term-card-checkmark {
    color: green;
    font-size: 16px;
    position: absolute;
    top: 6px;
    right: 6px;
}