#editable-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.editable-thumb {
    flex: 0 0 calc(25% - 10px);
    max-width: calc(25% - 10px);
    margin: 0;
    position: relative;
    box-sizing: border-box;
    cursor: grab;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.editable-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    cursor: grab;
}
.editable-thumb:active {
    cursor: grabbing;
}
.editable-thumb:hover {
    outline: 2px dashed #6528F7;
    outline-offset: -4px;
}
.editable-thumb.main-stripe-image img {
    border: 4px solid #6528F7;
}
.editable-thumb button {
    position: absolute;
    top: 2px;
    right: 2px;
    background: transparent;
    border: none;
    color: #D8D8F5;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    padding: 2px 5px;
}
.editable-thumb button:hover {
    color: #6528F7;
}
.editable-thumb.non-draggable {
    flex: 0 0 calc(25% - 10px);
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    cursor: pointer;
}
