/* Jodit Plugin: Snippet-Dropdown (insertSnippet) */

.jodit-popup-snippet-list {
    min-width: 180px;
    max-height: 300px;
    overflow-y: auto;
}

.jodit-popup-snippet-item {
    display: block;
    padding: 8px 16px;
    cursor: pointer;
    color: var(--oo-color-text, #333);
    text-decoration: none;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.4;
}

    .jodit-popup-snippet-item:hover {
        background: var(--oo-color-surface-hover, #f0f0f0);
    }

