image-ejf .editor-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: #333;
}

image-ejf label {
    font-weight: 500;
}

image-ejf .image-input {
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
}

image-ejf .image-input:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 3px rgba(76, 175, 80, 0.5);
}

image-ejf .image-preview {
    margin-top: 8px;
    max-height: 200px;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 4px;
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
}

image-ejf .image-preview img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}