.developer-workspace .editable-cell {
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 3px;
    transition: background-color 0.15s ease;
}

.developer-workspace .editable-cell:hover {
    background-color: #e9ecef;
}

.admin-panel .editable-cell {
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 3px;
    transition: background-color 0.15s ease;
}

.admin-panel .editable-cell:hover {
    background-color: #e9ecef;
}

.fade-out-row {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.text-cell {
    white-space: pre-wrap;
    word-break: break-word;
}

.edit-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.edit-actions {
    display: flex;
    gap: 4px;
}

textarea.auto-grow {
    resize: none;
    overflow: hidden;
    min-height: 31px;
}

.border-dashed {
    border-style: dashed;
    border-width: 2px;
}
