.blockContainer {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: move;
}

.blockContainer:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.blockHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #E5E7EB;
}

.dragHandle {
    width: 24px;
    height: 24px;
    background: url('../../../assets/icons/drag.svg') center no-repeat;
    cursor: move;
}

.deleteButton {
    width: 24px;
    height: 24px;
    border: none;
    background: url('../../../assets/icons/trash.svg') center no-repeat;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.deleteButton:hover {
    opacity: 1;
}

.blockContent {
    padding: 20px;
}

/* Стили для состояния перетаскивания */
.blockContainer[draggable="true"] {
    opacity: 1;
}

.blockContainer[draggable="true"]:active {
    opacity: 0.5;
}

/* Стили для места вставки при перетаскивании */
.dropTarget {
    border: 2px dashed #91CF4F;
    background-color: #F9FCF6;
    margin: 10px 0;
    height: 4px;
    transition: all 0.3s ease;
}

.dropTarget.active {
    height: 20px;
} 