/* ============================================================
   Ikonväljare (svgicons)
   ============================================================ */
.jodit-svgicons-picker {
    padding: 8px;
    width: 320px;
}

.jodit-svgicons-search {
    width: 100%;
    box-sizing: border-box;
    padding: 6px 8px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.jodit-svgicons-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 4px;
    max-height: 220px;
    overflow-y: auto;
}

.jodit-svgicons-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.jodit-svgicons-item:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

/* ============================================================
   Attribut-editor (editattributes)
   ============================================================ */
.jodit-attredit {
    padding: 10px;
    width: 300px;
}

.jodit-attredit-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.jodit-attredit-info {
    padding: 8px;
    color: #666;
}

.jodit-attredit-field {
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
}

.jodit-attredit-label {
    font-size: 12px;
    color: #555;
    margin-bottom: 2px;
}

.jodit-attredit-input {
    width: 100%;
    box-sizing: border-box;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.jodit-attredit-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 10px;
}

.jodit-attredit-apply,
.jodit-attredit-cancel {
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #ccc;
}

.jodit-attredit-apply {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.jodit-attredit-apply:hover {
    background: #0b5ed7;
}

.jodit-attredit-cancel:hover {
    background: #f0f0f0;
}