.primo-lucide { font-size: 13px; }

.primo-lucide-current {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    margin-bottom: 10px;
    background: #f6f7f8;
    border: 1px solid #e4e6e8;
    border-radius: 4px;
}
.primo-lucide-current__icon svg { width: 24px; height: 24px; color: #28313a; }
.primo-lucide-current__name { font-weight: 600; }
.primo-lucide-clear {
    margin-left: auto;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    color: #8a9199;
}
.primo-lucide-clear:hover { color: #d42054; }

.primo-lucide input { margin-bottom: 12px; }

.primo-lucide-loading,
.primo-lucide-empty,
.primo-lucide-more { color: #68727b; padding: 10px 2px; }

.primo-lucide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
    gap: 8px;
    max-height: 420px;
    overflow-y: auto;
    padding: 6px;
    border: 1px solid #e4e6e8;
    border-radius: 4px;
    background: #fff;
}
.primo-lucide-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 6px;
    border: 1px solid transparent;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    transition: background .12s, border-color .12s;
    min-width: 0;
}
.primo-lucide-cell:hover { background: #f1f7fb; border-color: #cfe3f0; }
.primo-lucide-cell.is-selected { background: #e6f3fb; border-color: #2a9fd6; }
.primo-lucide-cell svg { width: 26px; height: 26px; color: #28313a; stroke-width: 1.5; }
.primo-lucide-cell__label {
    font-size: 10px;
    color: #68727b;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
