.breton-context-menu {
    position: absolute;
    display: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 99999;
    min-width: 200px;
}

.breton-menu-item {
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: background-color 0.2s;
}

.breton-menu-item:hover {
    background-color: #f0f0f1;
}

.breton-menu-item .dashicons {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

.breton-menu-item .spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
