[data-editable="true"] {
    outline: 2px dashed transparent;
    transition: outline 0.3s, background 0.3s;
}

[data-editable="true"]:hover {
    cursor: pointer;
    outline: 2px dashed #007bff;
    background: rgba(0, 123, 255, 0.1);
}

[data-container], [data-type="card"] {
    position: relative;
}

.add-btn,
.delete-btn {
    border: unset;
    outline: unset;
    position: absolute;
    top: -30px;
    border-radius: 100px;
    cursor: pointer;
    z-index: 2;
    width: 25px;
    height: 25px;
    transition: all 100ms;
}

.add-btn:hover,
.delete-btn:hover {
    transform: scale(1.2);
}

.add-btn {
    left: -30px;
    background: limegreen;
}

.delete-btn {
    background: indianred;
}

#savePatchBtn {
    position: fixed;
    left: 16px;
    bottom: 16px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    background: #28a745;
    color: white;
    cursor: pointer;
    z-index: 3;
}

[data-linkable]:hover::before {
    content: '🔗';
    position: absolute;
    bottom: -30px;
    left: 0;
    background: #17a2b8;
    color: #fff;
    padding: 2px 6px;
    font-size: 14px;
    border-radius: 4px;
    z-index: 10;
    cursor: pointer;
}

[data-linkable] {
    position: relative;
}