﻿.quill-context-menu {
    position: fixed;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 3px;
    z-index: 10000;
    min-width: 160px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.quill-context-menu-item {
    padding: 8px 16px;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    transition: background-color 0.15s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

    .quill-context-menu-item:hover {
        background-color: #f8f9fa;
    }

    .quill-context-menu-item:active {
        background-color: #e9ecef;
    }

    .quill-context-menu-item.disabled {
        color: #6c757d;
        cursor: not-allowed;
    }

        .quill-context-menu-item.disabled:hover {
            background-color: transparent;
        }

.quill-context-menu-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 4px 0;
}

/* Ensure the context menu appears above other elements */
.html-editor {
    position: relative;
}

/* Style for the Quill editor container when showing context menu */
.ql-editor {
    position: relative;
}
