/* Edit mode helpers */

.block {
    position: relative;
}

body.edit-mode .block {
    margin-bottom: 1rem;
    outline: 2px dashed #ff9b00;
    outline-offset: 6px;
}

body.edit-mode .block::before {
    content: attr(data-label);
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 6px;
    background: #ff9b00;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 3px;
}
