.image-editor {
    position: relative;
}

.editable-image {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.image-upload-input {
    display: none;
}

.image-upload-label {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

.upload-button {
    display: none; /* Скрываем визуальную часть кнопки */
}

.editable-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}