﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.editable-item {
    position: relative;
    padding: 10px;
    cursor: pointer;
    border: 1px solid #ddd;
    transition: border-color 0.3s ease-in-out;
    margin-bottom: 10px;
}

    .editable-item:hover {
        border-color: #3498db;
    }

.overlay {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #3498db;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    cursor: text;
    width: auto;
}

.editor {
    outline: none;
}

